Fold antelope/flex and asHost into libCom

Build lexer and parser from libCom/Makefile.
Since libCom now includes asLib.c and asLib_lex.c we must build
antelope and flex without linking them to Com.  This works because
they only need epicsTempFile anyway.  However make doesn't like a
subdirectory with the same name as a target object, so the antelope
source directory is now called yacc.  The two main.c files were also
renamed to avoid other build problems.

Merge asHost into Com and remove mentions in CONFIG_BASE

Lots of noise since SRCS must be renamed to Com_SRCS
This commit is contained in:
Michael Davidsaver
2011-02-25 15:39:44 -06:00
committed by Andrew Johnson
parent 588ea50bfb
commit f7fc564556
75 changed files with 182 additions and 222 deletions

View File

@@ -9,9 +9,9 @@
SRC_DIRS += $(LIBCOM)/timer
INC += epicsTimer.h
SRCS += epicsTimer.cpp
SRCS += timer.cpp
SRCS += timerQueue.cpp
SRCS += timerQueueActive.cpp
SRCS += timerQueueActiveMgr.cpp
SRCS += timerQueuePassive.cpp
Com_SRCS += epicsTimer.cpp
Com_SRCS += timer.cpp
Com_SRCS += timerQueue.cpp
Com_SRCS += timerQueueActive.cpp
Com_SRCS += timerQueueActiveMgr.cpp
Com_SRCS += timerQueuePassive.cpp