# Makefile for HW4 # V22.0480.002, Visualization, Spring 2003 # authors: Zubin Girglani, Evelina Khukhashvili, Marie Shvartsapel # April 17, 2003 # NOTE: # Made various changes and improvements for sharing with # the rest of class. ################################################## # TARGETS ################################################## # county number # manhattan c = 36061 # prince william county (small dataset!) c = 51153 # manassas park (small dataset!) c = 51685 # format file type f = c # manassas park (small dataset!) c = 51685 f = 1 fmt = RT${f} fmtfile = ${fmt}.fmt # datafile location datafile = temp.tmp datafile = /usr/unsupported/packages/visual/tgr/rt/${c}/TGR${c}.${fmt} ################################################## # TARGETS ################################################## ################ # MAP DISPLAY: md MapDisplay: MapDisplay.class java MapDisplay mdc MapDisplay.class: MapDisplay.java javac MapDisplay.java ################ # READERS: r read: Reader.class RawDataReader.class java Reader ${fmtfile} ${datafile} c readc: Reader.class RawDataReader.class java Reader -c ${fmtfile} ${datafile} a Reader Reader.class: Reader.java RawDataReader.class javac Reader.java d Detail DetailReader.class: DetailReader.java RawDataReader.class javac DetailReader.java aa RawDataReader.class: RawDataReader.java javac RawDataReader.java ####################################### # book keeping ####################################### tarfile = tgrDisplay tar: echo ">>> Creating ${tarfile} file <<<" -@tar cvf ${tarfile}.tar \ *java *.fmt *.fig Makefile README save: -@ci -l -m"make save" \ *java *.fmt *.fig Makefile README