# ******************************************************************** # filename : makefile used for golf by Kuo Huang * # author : Roger W. Webster, Ph.D. (stolen from Mark DeBeradino) * # description : * # this is a stadard makefile for programs using the libraries # and other modules associated with CS455 and the Millersville # ROBOTICS AND COMPUTER VISION LABORATORY. # ******************************************************************** C2= /lib/c2 LD= /bin/ld ## ## place executable file name on next line EXEC= a.out ## ## CFLAGS= -O -I$(C2) ## ## libraries to link with on next line LIBS= -lm ## ## your files in .o form on next line OBJECTS= \ blocks.o robot.o ## ITEXFLAGS= -DSUN -DVME -DBYTESWAP ## ## vision modules VISION= robot.o ## /work/users/stuff/vks101.o ## /work/users/stuff/robot.o ## ## commands $(EXEC): $(OBJECTS) cc $(ITEXFLAGS) -o $(EXEC) $(CFLAGS) $(OBJECTS) \ $(LIBS) @echo complete.... ## ## $(OBJECTS): makefile ## ## # ********************************************************************