From 5d341aed37980e441371cd543323cf37d6942e07 Mon Sep 17 00:00:00 2001 From: Johnny Tang Date: Tue, 29 Nov 1994 21:37:18 +0000 Subject: [PATCH] atdb.c is included in atdb_yacc.c --- src/db/Makefile.Unix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/db/Makefile.Unix b/src/db/Makefile.Unix index 16c6fff4d..daf9b5376 100644 --- a/src/db/Makefile.Unix +++ b/src/db/Makefile.Unix @@ -18,7 +18,6 @@ DEPLIBS = ./libDb.a\ SRCS.c = \ ../dbStaticLib.c \ - atdb_lex.c \ atdb_yacc.c \ ../dbta.c \ ../dbl.c \ @@ -29,7 +28,7 @@ LIBOBJS = dbStaticLib.o LIBNAME = libDb.a -PROD = dbta dbl dbls atdb +PROD = atdb dbl dbls dbta include $(EPICS)/config/RULES.Unix @@ -39,7 +38,7 @@ atdb: atdb_yacc.o $(DEPLIBS) # Extra rule since atdb_lex.c is included in atdb_yacc.c # In my opinion, these objects should really be built # independently. -atdb_yacc.o: atdb_lex.c +atdb_yacc.o: atdb_lex.c ../atdb.c clean:: @$(RM) atdb_lex.c atdb_yacc.c