CHPL = chpl CHPL_FLAGS = -O --no-bounds-checks TARGETS = \ istream \ istream_tp default: all all: $(TARGETS) clean: FORCE rm -f $(TARGETS) istream: stream_params.chpl utils.chpl istream.chpl $(CHPL) -o $@ $(CHPL_FLAGS) $^ istream_tp: stream_params.chpl utils.chpl stream_tests_tp.chpl istream_tp.chpl $(CHPL) -o $@ $(CHPL_FLAGS) $^ FORCE: