#---------------------------------------------------------------------------- # Makefile for Mobility programs #---------------------------------------------------------------------------- # uncomment to hide commands # ifndef Q # Q = @ # endif # Sources to compile (do not list the main program file) CPP_SRCS = # executable name (to be made from a .cc or .cpp file of the same name) PROG = example1 ifeq ($(HOSTNAME),maximal.robotics.cs.rpi.edu) # include the master Mobility library makefile LDLIBS += -lmby -lidlmby -lrobot include $(MOBILITY_ROOT)/etc/scripts/cppexec.mf else # this is the part where we compile against a "stubs" library CXXFLAGS = -I. $(PROG): $(PROG).o endif