diff options
author | June McEnroe <june@causal.agency> | 2017-09-06 14:19:10 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2017-09-06 14:19:10 -0400 |
commit | d60ccd25924f6ef95eb29504ca610395fe989083 (patch) | |
tree | 17e867aca87cbcc6c6111d6f897f2fe86eedbaa0 | |
parent | Remove C code from link script (diff) | |
download | src-d60ccd25924f6ef95eb29504ca610395fe989083.tar.gz src-d60ccd25924f6ef95eb29504ca610395fe989083.zip |
Fix bin/Makefile FreeBSD compatibility
Have to use the same generic rule as sys.mk so it replaces it. Otherwise it only uses the one in sys.mk.
Diffstat (limited to '')
-rw-r--r-- | bin/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/Makefile b/bin/Makefile index 62a50309..9212d70e 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -3,7 +3,7 @@ CWARNS = -Wall -Wextra -Wpedantic all: $(BINS) -%: %.c +.c: $(CC) $(CWARNS) $(CFLAGS) -o $@ $< atch: dtch |