- New oscillator module - Bug fixes SKIPPED: psi/buffer.c psi/el734hp.c psi/el737hpdriv.c psi/make_gen psi/nextrics.c psi/nxamor.c psi/pimotor.c psi/polterwrite.c psi/psi.c psi/swmotor2.c psi/tasscan.c psi/tricssupport.c psi/tricssupport.h psi/tecs/make_gen psi/utils/ecb_load_new/ecb_load.c psi/utils/ecb_load_new/ecb_load.h psi/utils/ecb_load_new/ecbdriv_els.c psi/utils/ecb_load_new/gpib_els.c psi/utils/ecb_load_new/makefile psi/utils/ecb_load_new/makefile_EGPIB psi/utils/ecb_load_new/makefile_GPIB
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
#---------------------------------------------------------------------------
|
|
# Makefile for SICS
|
|
# machine-dependent part for Redhat Linux with AFS at PSI
|
|
#
|
|
# Mark Koennecke 1996-2001
|
|
# Markus Zolliker, March 2003
|
|
#==========================================================================
|
|
# assign if the National Instrument GPIB driver is available
|
|
NI= -DHAVENI
|
|
NIOBJ= nigpib.o
|
|
NILIB=$(SINQDIR)/linux/lib/cib.o
|
|
|
|
# The variable SRC is needed for the case, where source and objects are
|
|
# separated. In the case where objects are mixed up with sources, SRC
|
|
# is assumed to be empty and does not harm. I case of problems
|
|
# please ask Markus Zolliker.
|
|
|
|
include $(SRC)linux_def
|
|
|
|
CC = gcc
|
|
CFLAGS = -I$(HDFROOT)/include -DHDF4 -DHDF5 $(NI) \
|
|
-I$(SRC)psi/hardsup -I$(SRC). \
|
|
-fwritable-strings -DCYGNUS -DNONINTF -g $(DFORTIFY)
|
|
|
|
BINTARGET = bin
|
|
EXTRA=nintf.o
|
|
SUBLIBS = psi/libpsi.a psi/hardsup/libhlib.a matrix/libmatrix.a \
|
|
psi/tecs/libtecsl.a
|
|
LIBS = -static -L$(HDFROOT)/lib $(SUBLIBS) $(NILIB)\
|
|
-ltcl8.3 $(HDFROOT)/lib/libhdf5.a \
|
|
$(HDFROOT)/lib/libmfhdf.a $(HDFROOT)/lib/libdf.a \
|
|
$(HDFROOT)/lib/libjpeg.a -ldl -lz -lm -lc
|
|
|
|
include $(SRC)make_gen
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|