From 9c6cad97207d5d539f61e62b192335aa98fb2243 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Wed, 15 Aug 2012 00:18:41 -0400 Subject: [PATCH] Fix two deps in the makefile. --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index ae7d943..12e7164 100644 --- a/makefile +++ b/makefile @@ -12,11 +12,11 @@ OBJS := $(patsubst %.c, %.o, $(SOURCES)) aclq: $(OBJS) $(CC) $(CFLAGS) $(LIBS) -o $@ $^ -.PHONY: clean test +.PHONY: clean clean: rm -f $(OBJS) rm -f aclq -test: +test: aclq ./run-tests.sh -- 2.43.2