ALL = \ ds-cdf-day \ ds-cdf-hour \ gen-10min2 \ gen-10min3 \ gen-10min-now \ raw-chk \ raw-ds \ raw-ds2 \ raw-med \ raw-med-all \ #dat-dat2 \ dat-dat2-txt \ ds-cdf \ ds-cdf2 \ gen-10min-now \ gen-10min2 \ raw-ds \ raw-ds2 \ #GCC = gcc -Wall -O0 -I/usr/local/cdf/include GCC = icc -Wall -I/opt/cdf/include -fast -parallel -ip LIB = /opt/cdf/lib/libcdf.a -lm all: $(ALL) clean: rm -f $(ALL) dat-dat2: dat-dat2.c $(GCC) -o $@ $@.c $(LIB) dat-dat2-txt: dat-dat2-txt.c $(GCC) -o $@ $@.c $(LIB) ds-cdf: ds-cdf.c $(GCC) -o $@ $@.c $(LIB) ds-cdf-day: ds-cdf-day.c $(GCC) -o $@ $@.c $(LIB) ds-cdf-hour: ds-cdf-hour.c $(GCC) -o $@ $@.c $(LIB) ds-cdf2: ds-cdf2.c $(GCC) -o $@ $@.c $(LIB) gen-10min-now: gen-10min-now.c $(GCC) -o $@ $@.c $(LIB) gen-10min2: gen-10min2.c $(GCC) -o $@ $@.c $(LIB) gen-10min3: gen-10min3.c $(GCC) -o $@ $@.c $(LIB) raw-chk: raw-chk.c $(GCC) -o $@ $@.c $(LIB) raw-ds: raw-ds.c $(GCC) -o $@ $@.c $(LIB) raw-ds2: raw-ds2.c $(GCC) -o $@ $@.c $(LIB) raw-med: raw-med.c $(GCC) -o $@ $@.c $(LIB) raw-med-all: raw-med-all.c $(GCC) -o $@ $@.c $(LIB) send: send.c $(GCC) -o $@ $@.c $(LIB)