# ******************************************************************** # filename : makefile * # author : Roger W. Webster, Ph.D. * # description : * # this is a stadard makefile for programs using the libraries * # and other modules associated with CS455 and the Millersville * # ROBOT VISION and ARTIFICIAL INTELLIGENCE LABORATORY. * # ******************************************************************** C2= /lib/c2 LD= /bin/ld VIS= /work/vision/100/include ## ## place executable file name on next line EXEC= a.out ## ## CFLAGS= -O -I$(C2) -I$(VIS) ## ## libraries to link with on next line LIBS= -litex100 -lm ## ## your files in .o form on next line OBJECTS= first.o ## ITEXFLAGS= -DSUN -DVME -DBYTESWAP ## ## vision modules VISION= /work/users/stuff/vks101.o \ /work/users/stuff/robot.o ## ## commands $(EXEC): $(OBJECTS) cc $(ITEXFLAGS) -o $(EXEC) $(CFLAGS) $(OBJECTS) $(VISION) \ $(LIBS) @echo complete.... ## ## $(OBJECTS): makefile ## ## # ********************************************************************