########################################################################### # Programm to controll CheshireCat the TRD Pretrigger and L0 trigger system ########################################################################### -include ../config.mk CROSSCC = arm-linux-gcc CFLAGS = -O -Wall -I./ BINPATH = stefan@zimmer:/home/stefan/CheshireCat/dcsnfs # SRC = adc # kobjects = pio.o bobjects = CheshireCat_ui scsnping all : $(kobjects) $(bobjects) CheshireCat_ui : CheshireCat_ui.c $(CROSSCC) $(CFLAGS) -o $@ $< scsnping : scsnping.c scsb.h $(CROSSCC) $(CFLAGS) -o $@ $< install: all scp $(bobjects) $(BINPATH) uninstall: clean ( cd $(BINPATH) ; rm -f $(bobjects) ) clean: rm -f $(bobjects) distclean: clean uninstall rm -f ./*~