# # Description: Makefile for f1tdcLib.o # This driver is specific to VxWorks BSPs and must be compiled # with access to vxWorks headers. # ARCH=Linux INCS = -I/gluex/Subsystems/FDC/linuxvme/include \ -I/gluex/Subsystems/FDC/fa125 LIBS = -L/gluex/Subsystems/FDC/linuxvme/lib\ -L/gluex/coda/3.0/linuxvme/lib \ -L/gluex/Subsystems/FDC/fa125 \ -L/lib all: pulserTestNEW tdctest1 pulserTestNEW.o: pulserTestNEW.c Makefile g++ -g -c -O $(CFLAGS) $(INCS) tdctest1.cc pulserTestNEW: pulserTestNEW.o g++ -g $(LIBS) -ljvme -ltir -lti \ -lf1NEWtdc\ -lexpat -lpthread -ldl -lrt tdctest1.o -o tdctest1 tdctest1.o: tdctest1.cc Makefile g++ -g -c -O $(CFLAGS) $(INCS) tdctest1.cc tdctest1: tdctest1.o g++ -g $(LIBS) -ljvme -ltir -lti \ -lf1NEWtdc\ -lexpat -lpthread -ldl -lrt tdctest1.o -o tdctest1 clean: rm -f pulserTestNEW tdctest1 pulserTestNEW.o tdctest1.o