aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorOmar Polo <op@omarpolo.com>2021-01-15 14:03:45 +0000
committerOmar Polo <op@omarpolo.com>2021-01-15 14:03:45 +0000
commitdafb57b8af432d800219a8e17900e1ac56a65c14 (patch)
tree760771377723b628d83914a5946805ab86cb14b5 /Makefile
parent4ad11931ec10c823e98b7c51efc7146d8cbdd012 (diff)
sandbox also on FreeBSD with capsicum
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index fe3b4ce..c405482 100644
--- a/Makefile
+++ b/Makefile
@@ -14,8 +14,9 @@ lex.yy.c: lex.l y.tab.c
y.tab.c: parse.y
${YACC} -b y -d parse.y
-gmid: gmid.o iri.o utf8.o lex.yy.o y.tab.o
- ${CC} gmid.o iri.o utf8.o lex.yy.o y.tab.o -o gmid ${LDFLAGS}
+OBJS = gmid.o iri.o utf8.o lex.yy.o y.tab.o sandbox.o
+gmid: ${OBJS}
+ ${CC} ${OBJS} -o gmid ${LDFLAGS}
TAGS: gmid.c iri.c utf8.c
-etags gmid.c iri.c utf8.c || true