From 95d4549d0fec28705faa3ba9a434a2571873071e Mon Sep 17 00:00:00 2001 From: Babak Farrokhi Date: Sat, 19 May 2018 21:56:28 +0430 Subject: [PATCH] Fix variable names --- cpustat/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpustat/Makefile b/cpustat/Makefile index a4d159e..30dfeb8 100644 --- a/cpustat/Makefile +++ b/cpustat/Makefile @@ -13,12 +13,12 @@ OBJ = cpustat.o all: $(CPUSTAT) $(CPUSTAT): $(OBJ) - $(CC) $(LDFLAGS) $(OBJ) $(LDLIBS) -o $? + $(CC) $(LDFLAGS) $(OBJ) $(LDLIBS) -o $(CPUSTAT) install: all install -s -C $(CPUSTAT) $(PREFIX)/bin clean: - $(RM) *.o *.a a.out core temp.* $(PROGS) + $(RM) *.o *.a a.out core temp.* $(CPUSTAT) $(RM) -r *.dSYM