marrub
/
LoveToken
Archived
1
0
Fork 0
master
Marrub 2015-06-11 10:34:20 -04:00
parent 36e07578a7
commit 90b48d18eb
1 changed files with 4 additions and 3 deletions

View File

@ -17,7 +17,6 @@ EXAMPLEC=
ifeq ($(GDCCBUILD),ON)
CC+=gdcc-cc
LD+=gdcc-ld
MKDIR+=mkdir
LIBNAME+=$(OUTDIR)/LoveToken.bin
PCFLAGS+=--bc-target=ZDoom -i$(SRCDIR)
LFLAGS+=--bc-target=ZDoom
@ -46,11 +45,13 @@ else
endif
endif
all:
$(MKDIR) $(OUTDIR)
all: $(OUTDIR)
$(CC) $(CFLAGS) $(PCFLAGS) -o $(OUTDIR)/lt.o $(SRCDIR)/lt.c
$(LD) $(LFLAGS) $(PLFLAGS) -o $(LIBNAME) $(OUTDIR)/lt.o $(PLFLAGS2)
bin:
$(MKDIR) $(OUTDIR)
clean:
$(RM) $(LIBNAME) $(OUTDIR)/lt.o $(RMEXTRA)