diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2016-10-25 16:12:45 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2016-10-25 16:12:45 +0000 |
commit | 6db6db4b7f38f7760b90ec861a39b5ccb9df5ba9 (patch) | |
tree | 4c2c4a63a90dbcb77b7e6860bb662b5ddecdedf5 /grap | |
parent | ab1717bb35d85041e0184f79daa1313a1306dc01 (diff) |
Notes
Diffstat (limited to 'grap')
-rw-r--r-- | grap/Makefile.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grap/Makefile.mk b/grap/Makefile.mk index 8fa3f470c883f..4c82266d13111 100644 --- a/grap/Makefile.mk +++ b/grap/Makefile.mk @@ -6,12 +6,12 @@ FLAGS = -DLIBDIR='"$(LIBDIR)"' $(DEFINES) -I../include YFLAGS = -d .c.o: - $(CC) $(CFLAGS) $(WARN) $(FLAGS) $(CPPFLAGS) -c $< + $(CC) $(_CFLAGS) $(FLAGS) -c $< all: grap.c grapl.c grap grap: $(OBJ) - $(CC) $(CFLAGS) $(LDFLAGS) $(OBJ) $(LIBS) -lm -o grap + $(CC) $(_CFLAGS) $(_LDFLAGS) $(OBJ) $(LIBS) -lm -o grap y.tab.h: grap.c |