Skip to content

Commit

Permalink
readd CFLAGS linking - vapier
Browse files Browse the repository at this point in the history
  • Loading branch information
ptc committed Mar 9, 2024
1 parent 3e6423f commit 1ec7e18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ protos.h: $(SRCS) $(TABSRCS)
fgrep -h Prototype $(SRCS) $(TABSRCS) > protos.h

crond: $(OBJS)
$(CC) $(LDFLAGS) $^ $(LIBS) -o crond
$(CC) $(CFLAGS) $(LDFLAGS) $^ $(LIBS) -o crond

crontab: $(TABOBJS)
$(CC) $(LDFLAGS) $^ -o crontab
$(CC) $(CLFAGS) $(LDFLAGS) $^ -o crontab

%.o: %.c defs.h $(PROTOS)
$(CC) $(CFLAGS) $(CPPFLAGS) -c $(DEFS) $< -o $@
Expand Down

0 comments on commit 1ec7e18

Please sign in to comment.