24 lines
577 B
Makefile
24 lines
577 B
Makefile
#Makefile at top of application tree
|
|
TOP = .
|
|
include $(TOP)/configure/CONFIG
|
|
DIRS := $(DIRS) configure
|
|
DIRS := $(DIRS) andorSupport
|
|
DIRS := $(DIRS) andorApp
|
|
andorApp_DEPEND_DIRS += andorSupport
|
|
ifeq ($(BUILD_IOCS), YES)
|
|
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard iocs))
|
|
iocs_DEPEND_DIRS += andorApp
|
|
endif
|
|
include $(TOP)/configure/RULES_TOP
|
|
|
|
uninstall: uninstall_iocs
|
|
uninstall_iocs:
|
|
$(MAKE) -C iocs uninstall
|
|
.PHONY: uninstall uninstall_iocs
|
|
|
|
realuninstall: realuninstall_iocs
|
|
realuninstall_iocs:
|
|
$(MAKE) -C iocs realuninstall
|
|
.PHONY: realuninstall realuninstall_iocs
|
|
|