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
30 lines
961 B
Makefile
30 lines
961 B
Makefile
#*************************************************************************
|
|
# Copyright (c) 2002 The University of Chicago, as Operator of Argonne
|
|
# National Laboratory.
|
|
# Copyright (c) 2002 The Regents of the University of California, as
|
|
# Operator of Los Alamos National Laboratory.
|
|
# EPICS BASE is distributed subject to a Software License Agreement found
|
|
# in file LICENSE that is included with this distribution.
|
|
#*************************************************************************
|
|
|
|
# This is a Makefile fragment, see src/libCom/Makefile.
|
|
|
|
SRC_DIRS += $(LIBCOM)/yacc
|
|
|
|
antelope_SRCS += closure.c
|
|
antelope_SRCS += error.c
|
|
antelope_SRCS += lalr.c
|
|
antelope_SRCS += lr0.c
|
|
antelope_SRCS += antelope.c
|
|
antelope_SRCS += mkpar.c
|
|
antelope_SRCS += output.c
|
|
antelope_SRCS += reader.c
|
|
antelope_SRCS += skeleton.c
|
|
antelope_SRCS += symtab.c
|
|
antelope_SRCS += verbose.c
|
|
antelope_SRCS += warshall.c
|
|
antelope_OBJS += epicsTempFile$(OBJ)
|
|
|
|
PROD_HOST += antelope
|
|
|