Initial commit

This commit is contained in:
Eagle517
2026-01-14 10:27:57 -06:00
commit c1576fee30
11290 changed files with 1552799 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
LUNGIF.SOURCE=\
lungif/dgif_lib.c \
lungif/egif_lib.c \
lungif/gif_err.c \
lungif/gifalloc.c
LUNGIF.SOURCE.OBJ=$(addprefix $(DIR.OBJ)/, $(LUNGIF.SOURCE:.c=$O))
SOURCE.ALL += $(LUNGIF.SOURCE)
targetsclean += TORQUEclean
DIR.LIST = $(addprefix $(DIR.OBJ)/, $(sort $(dir $(SOURCE.ALL))))
$(DIR.LIST): targets.lungif.mk
$(DIR.OBJ)/lungif$(EXT.LIB): CFLAGS+=-Ilungif
$(DIR.OBJ)/lungif$(EXT.LIB): $(DIR.LIST) $(LUNGIF.SOURCE.OBJ)
$(DO.LINK.LIB)
lungifclean:
ifneq ($(wildcard DEBUG.*),)
-$(RM) DEBUG*
endif
ifneq ($(wildcard RELEASE.*),)
-$(RM) RELEASE*
endif