Files
TinyFrame/demo/simple/Makefile
T
MightyPorkandGitHub db0ae30f41 Add re-entrancy support / multiple instances (#9)
* done with changes but now segfaulting

* fixed the bug

* fix some bad indents

* some cleanings

* updated readme
2017-12-14 00:28:06 +01:00

12 lines
255 B
Makefile

CFILES=../utils.c ../../TinyFrame.c
INCLDIRS=-I. -I.. -I../..
CFLAGS=-O0 -ggdb --std=gnu99 -Wno-main -Wno-unused -Wall -Wextra $(CFILES) $(INCLDIRS)
run: test.bin
./test.bin
build: test.bin
test.bin: test.c $(CFILES)
gcc test.c $(CFLAGS) -o test.bin