installed

This commit is contained in:
Jeff Hill
1997-01-10 00:05:21 +00:00
parent 355fe461e7
commit 7f3c5e6cbb
4 changed files with 113 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
CAS = ../..
TOP = $(CAS)/../..
include $(TOP)/config/CONFIG_BASE
CXXCMPLR = STRICT
PROD_LIBS := cas ca gdd Com
SRCS += main.cc
SRCS += exServer.cc
SRCS += exPV.cc
SRCS += exVectorPV.cc
SRCS += exScalarPV.cc
SRCS += exAsyncPV.cc
SRCS += exChannel.cc
SRCS += templInst.cc
PROD := excas
include $(TOP)/config/RULES.Host
clean::
@$(RM) excas
@$(RM) fexcas
@$(RM) pexcas
@$(RM) -rf Templates.DB
@$(RM) core
+35
View File
@@ -0,0 +1,35 @@
# base/src/cvtDctsdr/Makefile.Host
TOP = ../../..
include $(TOP)/config/CONFIG_BASE
MAN1 = sf2db.1
PROD_LIBS := Com
PROD = sf2db sdr2gblmenu sdr2driver sdr2device sdr2recordtype
# We need explicit rules here to
sdr2gblmenu$(EXE): sdr2gblmenu$(OBJ) dbStaticLib$(OBJ)
$(LINK.c) sdr2gblmenu$(OBJ) dbStaticLib$(OBJ) $(LDLIBS)
sdr2driver$(EXE): sdr2driver$(OBJ) dbStaticLib$(OBJ)
$(LINK.c) sdr2driver$(OBJ) dbStaticLib$(OBJ) $(LDLIBS)
sdr2device$(EXE): sdr2device$(OBJ) dbStaticLib$(OBJ)
$(LINK.c) sdr2device$(OBJ) dbStaticLib$(OBJ) $(LDLIBS)
sdr2recordtype$(EXE): sdr2recordtype$(OBJ) dbStaticLib$(OBJ)
$(LINK.c) sdr2recordtype$(OBJ) dbStaticLib$(OBJ) $(LDLIBS)
sf2db$(EXE): sf2dbYacc$(OBJ) dbStaticLib$(OBJ)
$(LINK.c) sf2dbYacc$(OBJ) dbStaticLib$(OBJ) $(LDLIBS)
sf2dbYacc.c: sf2dbLex.c
clean::
$(RM) sf2dbYacc.c sf2dbLex.c
include $(TOP)/config/RULES.Host
# EOF base/src/cvtDctsdr/Makefile.Host
+10
View File
@@ -0,0 +1,10 @@
TOP = ../../..
include $(TOP)/config/CONFIG_BASE
INC += resourceLib.h
INC += resourceLib.cc
INC += tsDLList.h
INC += tsSLList.h
include $(TOP)/config/RULES.Host
+38
View File
@@ -0,0 +1,38 @@
# Makefile.Host for base/src/dbStatic
#
#
TOP = ../../..
include $(TOP)/config/CONFIG_BASE
USR_CFLAGS := -DYY_USE_PROTOS
# includes to install from this sub-project
#
INC += alarm.h alarmString.h dbBase.h dbFldTypes.h
INC += dbStaticLib.h link.h special.h guigroup.h
# Sources to compile & put into lib:
#
LIBSRCS := dbStaticLib.c dbYacc.c dbPvdLib.c dbStaticNoRun.c
# Library to build:
#
LIBRARY := Db
# Products to build:
#
PROD := dbReadTest dbExpand dbToMenuH dbToRecordtypeH
# libs needed by PROD:
#
PROD_LIBS := Db Com
include $(TOP)/config/RULES.Host
# Extra rule since dbLexRoutines.c is included in dbYacc.c
dbYacc$(OBJ): dbLex.c ../dbLexRoutines.c
clean::
@$(RM) dbLex.c dbYacc.c
# EOF Makefile.Host for base/src/dbStatic