PERFORCE change 211552 for review

Aaron Meihm alm at FreeBSD.org
Tue May 22 23:40:44 UTC 2012


http://p4web.freebsd.org/@@211552?ac=10

Change 211552 by alm at alm_dev on 2012/05/22 23:39:56

	Fix dependency issue building with -j flag to make.

Affected files ...

.. //depot/projects/trustedbsd/bsmtrace/Makefile#4 edit

Differences ...

==== //depot/projects/trustedbsd/bsmtrace/Makefile#4 (text+ko) ====

@@ -3,7 +3,7 @@
 CC	= gcc
 CFLAGS 	= -Wall -g
 TARGETS = bsmtrace
-OBJ	= bsm.o bsmtrace.o conf.o y.tab.o lex.yy.o log.o pipe.o trigger.o fcache.o
+OBJ	= y.tab.o bsm.o bsmtrace.o conf.o lex.yy.o log.o pipe.o trigger.o fcache.o
 PREFIX	= /usr/local
 LIBS	= -lbsm
 
@@ -23,6 +23,8 @@
 	yacc -vd grammar.y
 	$(CC) $(CFLAGS) -c y.tab.c
 
+y.tab.h: y.tab.o
+
 lex.yy.o: y.tab.h token.l
 	lex token.l
 	$(CC) $(CFLAGS) -c lex.yy.c


More information about the p4-projects mailing list