Fix variable names

This commit is contained in:
Babak Farrokhi 2018-05-19 21:56:28 +04:30
parent 3fb280f387
commit 95d4549d0f

View File

@ -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