From 64717eca86a27702e2823983609603096518ef41 Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Fri, 2 Jul 2004 10:26:51 +0000 Subject: [PATCH] fixed colon after PHONY --- Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 93c8acf..5d174ca 100644 --- a/Makefile +++ b/Makefile @@ -10,13 +10,12 @@ all: nethogs CFLAGS=-g OBJS=structs.o packet.o connection.o process.o hashtbl.o refresh.o GCC=g++ - -.PHONY tgz +.PHONY: tgz tgz: clean cd .. ; tar czvf nethogs-$(VERSION).$(SUBVERSION).$(MINORVERSION).tar.gz nethogs-$(VERSION).$(SUBVERSION)/* -.PHONY check +.PHONY: check check: echo "Not implemented" @@ -42,7 +41,7 @@ connection.o: connection.cpp connection.h nethogs.h hashtbl.o: hashtbl.cpp hashtbl.h nethogs.h $(GCC) $(CFLAGS) -c hashtbl.cpp -.PHONY clean +.PHONY: clean clean: rm -f $(OBJS) rm -f nethogs