INCLUDES = -Iinclude -I../UsageEnvironment/include -I../groupsock/include
##### Change the following for your environment:
##### End of variables to change
LIB = libBasicUsageEnvironment.$(LIB_SUFFIX)
ALL = $(LIB)
all: $(ALL)
OBJS = BasicUsageEnvironment0.$(OBJ) BasicUsageEnvironment.$(OBJ) \
BasicTaskScheduler0.$(OBJ) BasicTaskScheduler.$(OBJ) \
DelayQueue.$(OBJ) BasicHashTable.$(OBJ)
libBasicUsageEnvironment.$(LIB_SUFFIX): $(OBJS)
$(LIBRARY_LINK)$@ $(LIBRARY_LINK_OPTS) \
$(OBJS)
.$(C).$(OBJ):
$(C_COMPILER) -c $(C_FLAGS) $<
.$(CPP).$(OBJ):
$(CPLUSPLUS_COMPILER) -c $(CPLUSPLUS_FLAGS) $<
BasicUsageEnvironment0.$(CPP): include/BasicUsageEnvironment0.hh
include/BasicUsageEnvironment0.hh: include/BasicUsageEnvironment_version.hh include/DelayQueue.hh
BasicUsageEnvironment.$(CPP): include/BasicUsageEnvironment.hh
include/BasicUsageEnvironment.hh: include/BasicUsageEnvironment0.hh
BasicTaskScheduler0.$(CPP): include/BasicUsageEnvironment0.hh include/HandlerSet.hh
BasicTaskScheduler.$(CPP): include/BasicUsageEnvironment.hh include/HandlerSet.hh
DelayQueue.$(CPP): include/DelayQueue.hh
BasicHashTable.$(CPP): include/BasicHashTable.hh
clean:
-rm -rf *.$(OBJ) $(ALL) core *.core *~ include/*~
##### Any additional, platform-specific rules come here:
syntax highlighted by Code2HTML, v. 0.9.1