mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-06 13:00:30 +00:00
0c62f08a58
make the dependancy files at the same time it makes the object files. SVN r180 (trunk)
36 lines
555 B
Makefile
36 lines
555 B
Makefile
ifeq (Windows_NT,$(OS))
|
|
EXE = lemon.exe
|
|
CCDV = @../../ccdv
|
|
CFLAGS = $(LOC) -D_WIN32 -Os -Wall -Wno-implicit -fomit-frame-pointer
|
|
else
|
|
EXE = lemon
|
|
CCDV = @../../ccdv
|
|
CFLAGS = -Os -Wall -Wno-implicit -fomit-frame-pointer
|
|
endif
|
|
|
|
CC = gcc
|
|
LDFLAGS = -s
|
|
|
|
OBJS = lemon.o
|
|
|
|
all: $(EXE)
|
|
|
|
$(EXE): $(OBJS)
|
|
$(CCDV) $(CC) $(LDFLAGS) -o $(EXE) $(OBJS)
|
|
|
|
%.o: %.c
|
|
$(CCDV) $(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
ifeq (Windows_NT,$(OS))
|
|
-del /q /f $(EXE) 2>nul
|
|
-del /q /f *.o 2>nul
|
|
else
|
|
rm -f $(EXE)
|
|
rm -f *.o
|
|
endif
|
|
|
|
lemon.o: lemon.c lempar.c
|
|
|