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) all: $(CPUSTAT)
$(CPUSTAT): $(OBJ) $(CPUSTAT): $(OBJ)
$(CC) $(LDFLAGS) $(OBJ) $(LDLIBS) -o $? $(CC) $(LDFLAGS) $(OBJ) $(LDLIBS) -o $(CPUSTAT)
install: all install: all
install -s -C $(CPUSTAT) $(PREFIX)/bin install -s -C $(CPUSTAT) $(PREFIX)/bin
clean: clean:
$(RM) *.o *.a a.out core temp.* $(PROGS) $(RM) *.o *.a a.out core temp.* $(CPUSTAT)
$(RM) -r *.dSYM $(RM) -r *.dSYM