diff options
author | Omar Polo <op@omarpolo.com> | 2021-05-24 13:48:55 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-05-24 13:48:55 +0000 |
commit | f48e3b85a97ab6dbf808559c2231d0ab6344ba66 (patch) | |
tree | 9a9401326f29498c60ea22ccfb2cfb76e45d2a83 /Makefile | |
parent | 0d047efcb40ec311da407e0b705a92f764c96338 (diff) |
move gg to regress
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -20,9 +20,6 @@ OBJS = ${SRCS:.c=.o} lex.yy.o y.tab.o ${COMPAT} gmid: ${OBJS} ${CC} ${OBJS} -o gmid ${LDFLAGS} -gg: gg.o iri.o utf8.o ${COMPAT} - ${CC} gg.o iri.o utf8.o ${COMPAT} -o $@ ${LDFLAGS} - static: ${OBJS} ${CC} ${OBJS} -o gmid ${LDFLAGS} ${STATIC} @@ -30,11 +27,11 @@ TAGS: ${SRCS} @(etags ${SRCS} || true) 2>/dev/null clean: - rm -f *.o compat/*.o lex.yy.c y.tab.c y.tab.h y.output gmid gg + rm -f *.o compat/*.o lex.yy.c y.tab.c y.tab.h y.output gmid rm -f compile_flags.txt make -C regress clean -regress: gmid gg +regress: gmid make -C regress all install: gmid |