diff options
author | Omar Polo <op@omarpolo.com> | 2021-01-15 14:03:45 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-01-15 14:03:45 +0000 |
commit | dafb57b8af432d800219a8e17900e1ac56a65c14 (patch) | |
tree | 760771377723b628d83914a5946805ab86cb14b5 /Makefile | |
parent | 4ad11931ec10c823e98b7c51efc7146d8cbdd012 (diff) |
sandbox also on FreeBSD with capsicum
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 |