X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=Makefile;h=f62279859a3ace0308963ab2d3575ad7b08b6094;hb=2cc55402361be4a017d10a9641807f2bd6b4ea5c;hp=c7232b9bbff76ddf78b27563c791ec22ae6fa38b;hpb=95d7d348316f1ed8d2ff3e37cb7f962abf4a7f84;p=utcp diff --git a/Makefile b/Makefile index c7232b9..f622798 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,15 @@ CFLAGS ?= -O0 -Wall -g CFLAGS += -std=c99 +BIN = selftest test + +all: $(BIN) + test: utcp.c test.c selftest: utcp.c selftest.c clean: - rm -f *.o test selftest + rm -f *.o $(BIN) .PHONY: clean