Compare commits

..

10 commits

Author SHA1 Message Date
Crayon2000
507186821c Add comments 2024-08-15 22:13:56 -04:00
Crayon2000
3bb5817f33 Add comments 2024-08-15 22:13:55 -04:00
Crayon2000
7d08f7eed5 Allow different texture format 2024-08-15 22:13:55 -04:00
Crayon2000
6795c0b1ce Remove useless loop 2024-08-15 22:13:54 -04:00
Crayon2000
d65a16765b Add id parameter to GRRLIB_LoadTextureTPL 2024-08-15 22:13:54 -04:00
Crayon2000
d67e646e67 Use less memory allocation 2024-08-15 22:13:53 -04:00
Crayon2000
fee01d1f4c Align TPL code with GRRLIB 2024-08-15 22:13:53 -04:00
Crayon2000
efdbfedb30 First limited TPL implementation 2024-08-15 22:13:52 -04:00
Crayon2000
d93847e6a3 Use short arguments 2024-04-18 01:07:29 -04:00
Crayon2000
2416530613 Use short arguments 2024-04-18 00:20:03 -04:00
2 changed files with 9 additions and 7 deletions

View file

@ -34,7 +34,8 @@ BUILD := build
SOURCES := .
INCLUDES := . ../lib/pngu
HDR := $(TARGET).h $(wildcard $(TARGET)/*.h)
HDR := $(TARGET).h
INL := $(wildcard $(TARGET)/*.h)
#---------------------------------------------------------------------------------
# options for code generation
@ -94,9 +95,10 @@ clean:
#---------------------------------------------------------------------------------
install:
@mkdir --parents $(DESTDIR)/lib $(DESTDIR)/include
@cp --force $(OUTPUT) $(DESTDIR)/lib
@cp --force --parents $(HDR) $(DESTDIR)/include
@mkdir -p $(DESTDIR)/lib $(DESTDIR)/include/grrlib
@cp -f $(OUTPUT) $(DESTDIR)/lib
@cp -f $(HDR) $(DESTDIR)/include
@cp -f $(INL) $(DESTDIR)/include/grrlib
#---------------------------------------------------------------------------------
else

View file

@ -86,9 +86,9 @@ clean:
#---------------------------------------------------------------------------------
install:
@mkdir --parents $(DESTDIR)/lib $(DESTDIR)/include
@cp --force $(OUTPUT) $(DESTDIR)/lib
@cp --force --parents $(HDR) $(DESTDIR)/include
@mkdir -p $(DESTDIR)/lib $(DESTDIR)/include
@cp -f $(OUTPUT) $(DESTDIR)/lib
@cp -f $(HDR) $(DESTDIR)/include
#---------------------------------------------------------------------------------
else