1: # no need to change anything below here 2: #---------------------------------------------------------- 3: 4: SRC0 = stereograph.c renderer.c gfxio.c 5: OBJ0 = stereograph.o renderer.o gfxio.o 6: 7: all: $(OBJ0) stereograph 8: make: all 9: 10: stereograph: $(OBJ0) 11: stereograph.o: stereograph.c stereograph.h renderer.h gfxio.h 12: renderer.o: renderer.c renderer.h 13: gfxio.o: gfxio.c gfxio.h renderer.h 14: 15: 16: install: 17: cp stereograph /usr/local/bin/stereograph 18: 19: clean: 20: rm -f $(OBJ0) stereograph core 21: 22: un-install: 23: rm /usr/local/bin/stereograph Makefile.in is included by ./Makefile for GNU `make' |