From: Michael Orlitzky Date: Wed, 15 Aug 2012 04:18:41 +0000 (-0400) Subject: Fix two deps in the makefile. X-Git-Tag: v0.0.1~11 X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=9c6cad97207d5d539f61e62b192335aa98fb2243;hp=3b6789d9406dc890f4c9386c227986739652f97d;p=apply-default-acl.git Fix two deps in the makefile. --- 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