# # Use gmake with this makefile! # # VOGLE is now installed in CS land in /projects/mobile-robotics/vogle # # You can find many example programs there if you'd like to check them out. # # some variables for the default rules for compiling C++ programs and linking LDFLAGS= -L/projects/mobile-robotics/vogle/lib LOADLIBES= -lvogle -lX11 -lm CXXFLAGS= -I/projects/mobile-robotics/vogle/include CC = gcc TARGETS= vexample all: $(TARGETS) clean: rm -f *.o core $(TARGETS)