mk: use ${CC} over cc
This commit is contained in:
parent
8c8158ad5b
commit
5fa614dac1
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
|
@ -6,9 +6,9 @@ OBJS = prezzyipc.o
|
|||
all: prezzyd prezzyc
|
||||
|
||||
prezzyd: prezzyd.o ${OBJS}
|
||||
cc ${CFLAGS} -o $@ prezzyd.o ${OBJS} ${LDFLAGS}
|
||||
${CC} ${CFLAGS} -o $@ prezzyd.o ${OBJS} ${LDFLAGS}
|
||||
prezzyc: prezzyc.o ${OBJS}
|
||||
cc ${CFLAGS} -o $@ prezzyc.o ${OBJS} ${LDFLAGS}
|
||||
${CC} ${CFLAGS} -o $@ prezzyc.o ${OBJS} ${LDFLAGS}
|
||||
|
||||
.SUFFIXES: .c .o
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue