Initial import of Scalos. To decrease size I have
[AROS-Contrib.git] / scalos / Plugins / FileTypes / makefile
blob125cb667d061b1e22dd4f5f0ba33482767aa765b
1 # makefile for Scalos FileTypes plugins
2 # $Date$
3 # $Revision$
5 #############################################################
7 SUBDIRS = DrawerContents \
8 Picture_Dimensions \
9 ExifPicture
11 #############################################################
13 .PHONY: All install clean
15 #############################################################
17 define build_subdir
18 $(MAKE) -s --directory=$(1);
19 endef
21 define install_subdir
22 $(MAKE) -s install --directory=$(1);
23 endef
25 define clean_subdir
26 $(MAKE) -s clean --directory=$(1);
27 endef
29 #############################################################
31 All:
32 @$(foreach subdir,$(SUBDIRS),$(call build_subdir,$(subdir)))
34 #############################################################
36 install:
37 @$(foreach subdir,$(SUBDIRS),$(call install_subdir,$(subdir)))
39 #############################################################
41 clean:
42 @$(foreach subdir,$(SUBDIRS),$(call clean_subdir,$(subdir)))
44 #############################################################