* done with changes but now segfaulting * fixed the bug * fix some bad indents * some cleanings * updated readme
13 lines
256 B
Makefile
13 lines
256 B
Makefile
CFILES=../utils.c ../../TinyFrame.c
|
|
INCLDIRS=-I. -I.. -I../..
|
|
CFLAGS=-O0 -ggdb --std=gnu99 -Wno-main -Wall -Wno-unused -Wextra $(CFILES) $(INCLDIRS)
|
|
|
|
|
|
build: test.bin
|
|
|
|
run: test.bin
|
|
./test.bin
|
|
|
|
test.bin: test.c $(CFILES)
|
|
gcc test.c $(CFLAGS) -o test.bin
|