Files
pcas/src/Makefile
W. Eric Norum 6fad25e2d1 Move RTEMS initialization/configuration files from the libCom
os-dependent directory to their own directory.
This solves the problem in which these files include header files
which are not yet installed when libCom is being built.
2001-08-09 17:54:06 +00:00

43 lines
672 B
Makefile

#
# $Id$
#
TOP = ..
include $(TOP)/configure/CONFIG
#
# for c++ build add the dirs gdd and cas after ca
# (and uncomment the c++ files in src/lbCom/Makefile.Unix)
#
DIRS += toolsComm
DIRS += makeBaseApp
DIRS += makeBaseExt
DIRS += libCom
DIRS += libCom/test
DIRS += ca
DIRS += dbStatic
DIRS += registry
DIRS += bpt
DIRS += db
DIRS += db/test
DIRS += as
DIRS += util
DIRS += dbtools
DIRS += rsrv
DIRS += rec
DIRS += dev
DIRS += misc
DIRS += iocsh
#Following are optional
ifeq ($(findstring vxWorks,$(BUILD_ARCHS)),vxWorks)
DIRS += vxWorks
endif
ifneq (,$(findstring RTEMS,$(BUILD_ARCHS)))
DIRS += RTEMS
endif
DIRS += gdd
DIRS += cas
include $(TOP)/configure/RULES_DIRS