mirror of
https://github.com/ennorehling/cutest.git
synced 2024-12-22 07:52:21 +00:00
19 lines
261 B
Makefile
19 lines
261 B
Makefile
|
# I am not very good at Makefiles.
|
||
|
|
||
|
CFLAGS += -Wall -g
|
||
|
INCLUDES = -I.
|
||
|
|
||
|
all: test
|
||
|
|
||
|
bin:
|
||
|
mkdir -p $@
|
||
|
|
||
|
test: bin/CuTestTest
|
||
|
@bin/CuTestTest
|
||
|
|
||
|
bin/CuTestTest: AllTests.c CuTestTest.c CuTest.c | bin
|
||
|
$(CC) $(CFLAGS) $(INCLUDES) -lm -o $@ $^
|
||
|
|
||
|
clean:
|
||
|
@rm -rf *~ bin
|