summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2017-09-06 14:19:10 -0400
committerJune McEnroe <june@causal.agency>2017-09-06 14:19:10 -0400
commitd60ccd25924f6ef95eb29504ca610395fe989083 (patch)
tree17e867aca87cbcc6c6111d6f897f2fe86eedbaa0
parentRemove C code from link script (diff)
downloadsrc-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.
-rw-r--r--bin/Makefile2
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