44 lines
1.7 KiB
Makefile
Executable File
44 lines
1.7 KiB
Makefile
Executable File
##### End of variables to change
|
|
|
|
NAME = libBasicUsageEnvironment
|
|
LIB_FILE = $(NAME).$(LIB_SUFFIX)
|
|
ALL = $(LIB_FILE)
|
|
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/*~
|
|
|
|
install: install1 $(INSTALL2)
|
|
install1: libBasicUsageEnvironment.$(LIB_SUFFIX)
|
|
install -d $(DESTDIR)$(PREFIX)/include/BasicUsageEnvironment $(DESTDIR)$(LIBDIR)
|
|
install -m 644 include/*.hh $(DESTDIR)$(PREFIX)/include/BasicUsageEnvironment
|
|
install -m 644 libBasicUsageEnvironment.$(LIB_SUFFIX) $(DESTDIR)$(LIBDIR)
|
|
install_shared_libraries: libBasicUsageEnvironment.$(LIB_SUFFIX)
|
|
ln -fs $(NAME).$(LIB_SUFFIX) $(DESTDIR)$(LIBDIR)/$(NAME).$(SHORT_LIB_SUFFIX)
|
|
ln -fs $(NAME).$(LIB_SUFFIX) $(DESTDIR)$(LIBDIR)/$(NAME).so
|
|
|
|
##### Any additional, platform-specific rules come here:
|