stuff
This commit is contained in:
parent
285b530527
commit
9ca077835b
7 changed files with 54 additions and 0 deletions
16
Makefile
Normal file
16
Makefile
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
CC = cc
|
||||
CFLAGS = -I external/xemil/include
|
||||
LDFLAGS =
|
||||
LIBS =
|
||||
|
||||
.PHONY: all clean
|
||||
|
||||
all: taiga
|
||||
|
||||
include objs.mk
|
||||
|
||||
taiga$(E): $(OBJS)
|
||||
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
|
||||
|
||||
clean:
|
||||
rm -f *.o taiga taiga.exe
|
||||
Loading…
Add table
Add a link
Reference in a new issue