syntax checking input purposes - Rectified an error message in fourmess.c - HMcontrol did not check for the HM to stop before returning. This caused weird data files at AMOR as the data had not yet been downloaded from the HM. - Fixed an issue about parameters in multicounter - Temporary fix in nxscript.c to always read the Hm from the HM and not a buffer. This is prior to rethinking caching strategies for old style HM's. - Synchronize now copies fixed motors correctly. This used to cause irritation with users. This now requires a script syncdrive to exist in the sync server which takes care of handling the fixed flag when this is desired. - Added initify to sicsdata in order to copy large value timebins over properly at AMOR
24 lines
638 B
Plaintext
24 lines
638 B
Plaintext
#---------------------------------------------------------------------------
|
|
# Makefile for SICS
|
|
# with libraries installed under /usr/local
|
|
#
|
|
# Mark Koennecke 1996-2001
|
|
# Markus Zolliker, March 2003
|
|
# Mark Koennecke, December 2009
|
|
#==========================================================================
|
|
|
|
#include ../linux_def
|
|
include ../sllinux_def
|
|
|
|
|
|
CC = gcc
|
|
CFLAGS = -I$(HDFROOT)/include -DHDF4 -DHDF5 $(NI) -I$(TCLINC) -Ihardsup \
|
|
-I.. -I. -MMD -DCYGNUS -DNONINTF -g $(DFORTIFY) -p \
|
|
-Wall -Wno-unused -Wunused-value -Wno-comment -Wno-switch -Werror
|
|
|
|
EXTRA=nintf.o
|
|
|
|
include make_gen
|
|
|
|
-include $(OBJ:.o=.d)
|