# # $Id$ # # [ Description ] # # Makefile # # DIR_MORPHEO must be defined Custom = yes ifndef Behavioural include $(DIR_MORPHEO)/Behavioural/Makefile.deps endif #-----[ Library ]------------------------------------------ Custom_LIBRARY = -lCustom \ $(Behavioural_LIBRARY) Custom_DIR_LIBRARY = -L$(DIR_MORPHEO)/Behavioural/./Custom/lib \ $(Behavioural_DIR_LIBRARY) Custom_DEPENDENCIES = Behavioural_library Custom_CLEAN = Behavioural_library_clean #-----[ Rules ]-------------------------------------------- #.NOTPARALLEL : Custom_library Custom_library_clean Custom_library : $(Custom_DEPENDENCIES) @\ $(MAKE) --directory=$(DIR_MORPHEO)/Behavioural/./Custom --makefile=Makefile; Custom_library_clean : $(Custom_CLEAN) @\ $(MAKE) --directory=$(DIR_MORPHEO)/Behavioural/./Custom --makefile=Makefile clean;