aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 32c20a0..7969201 100644
--- a/Makefile
+++ b/Makefile
@@ -30,17 +30,21 @@ generated.mk: $(CONFIGFILE) icons.mk Makefile check-icon-listing
check-icon-listing: check/check-icon-listing.c
$(CC) -o $@ $< $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)
+check:
+ +cd apps && $(MAKE) check
+
clean:
-rm -rf -- index.theme *.o *.su conv generated.mk scalable-"$(DIR_SUFFIX_)"
-rm -f -- check-icon-listing
-for s in $(SIZES); do printf "$${s}x$${s}$(DIR_SUFFIX)\n"; done | xargs rm -rf --
+ -+cd apps && $(MAKE) clean
# These are just added so autocompletion works with them
-all all-fast all-fast-icons install uninstall index.theme conv: generated.mk
+all all-fast all-fast-icons all-apps install uninstall index.theme conv: generated.mk
+@$(MAKE) -f mk/make-stage-2.mk $@
.DEFAULT:
+@$(MAKE) generated.mk
+@$(MAKE) -f mk/make-stage-2.mk $@
-.PHONY: all all-fast all-fast-icons install uninstall clean
+.PHONY: all check all-fast all-fast-icons all-apps install uninstall clean