1 # makefile for Scalos FileTypes plugins
5 #############################################################
7 SUBDIRS
= DrawerContents \
11 #############################################################
13 .PHONY
: All
install clean
15 #############################################################
18 $(MAKE
) -s
--directory
=$(1);
22 $(MAKE
) -s
install --directory
=$(1);
26 $(MAKE
) -s
clean --directory
=$(1);
29 #############################################################
32 @
$(foreach subdir
,$(SUBDIRS
),$(call build_subdir
,$(subdir
)))
34 #############################################################
37 @
$(foreach subdir
,$(SUBDIRS
),$(call install_subdir
,$(subdir
)))
39 #############################################################
42 @
$(foreach subdir
,$(SUBDIRS
),$(call clean_subdir
,$(subdir
)))
44 #############################################################