From 53730e6f2e6d2625e935bd91c8639642f6d1519b Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Fri, 25 Jul 2014 13:14:08 +0200 Subject: [PATCH] Build both binaries. --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 -- 2.39.2