- Fixed synchronisation issues - Fixed hsitogram memory writing from nxscript - Started module for writing SICS interfaces in Tcl - Fixed a bug in scan, which allowed to corrupt files - Fixed memory problems in napi5
45 lines
1.4 KiB
Plaintext
45 lines
1.4 KiB
Plaintext
#---------------------------------------------------------------------------
|
|
# Makefile for SICS
|
|
# machine-dependent part for Tru64 Unix
|
|
#
|
|
# Mark Koennecke 1996-2001
|
|
# Markus Zolliker, March 2003
|
|
#==========================================================================
|
|
# the following lines only for fortified version
|
|
#DFORTIFY=-DFORTIFY
|
|
#FORTIFYOBJ=strdup.o fortify.o
|
|
#==========================================================================
|
|
# assign if the National Instrument GPIB driver is available
|
|
#NI= -DHAVENI
|
|
#NIOBJ= nigpib.o
|
|
#NILIB=-lgpibenet
|
|
#==========================================================================
|
|
# comment or uncomment if a difrac version is required
|
|
# Do not forget to remove or add comments to ofac.c as well if changes
|
|
# were made here.
|
|
|
|
#DIFOBJ=difrac.o -Ldifrac -ldif
|
|
#DIFIL= difrac.o
|
|
#---------------------------------------------------------------------------
|
|
|
|
#----------------select proper Makefile
|
|
MFLAGS= -f makefile_alpha
|
|
|
|
HDFROOT=/data/lnslib
|
|
|
|
CC = cc
|
|
CFLAGS = -I$(HDFROOT)/include $(DFORTIFY) -DHDF4 -DHDF5 -I$(SRC)hardsup -g \
|
|
-std1 -warnprotos
|
|
BINTARGET = bin
|
|
EXTRA=
|
|
LIBS = -L$(HDFROOT)/lib -Lhardsup -lhlib -Lmatrix -lmatrix -Ltecs \
|
|
-ltecsl -ltcl8.0 -lfor $(HDFROOT)/lib/libhdf5.a \
|
|
$(HDFROOT)/lib/libmfhdf.a $(HDFROOT)/lib/libdf.a \
|
|
$(HDFROOT)/lib/libjpeg.a -lz -lm -ll -lc
|
|
|
|
include make_gen
|
|
|
|
|
|
|
|
|