author | dwmw2 <dwmw2> | 2002-04-16 00:38:48 (UTC) |
---|---|---|
committer | dwmw2 <dwmw2> | 2002-04-16 00:38:48 (UTC) |
commit | dd762e765310eb8c721c210b10239c9dd14eb4ef (patch) (side-by-side diff) | |
tree | 90b57ef46e8dfd1feabcfb384306828b08b5e6de /Makefile | |
parent | d4def4829c4d5734c78f2f732eaf4bf752bec9c7 (diff) | |
download | opie-dd762e765310eb8c721c210b10239c9dd14eb4ef.zip opie-dd762e765310eb8c721c210b10239c9dd14eb4ef.tar.gz opie-dd762e765310eb8c721c210b10239c9dd14eb4ef.tar.bz2 |
add nethack
-rw-r--r-- | Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -41,33 +41,35 @@ APPS=$(LOCALAPPS) core/addressbook calculator clock datebook \ qipkg mindbreaker go qasteroids qcop fifteen keypebble today opiemail/converter opiemail \ noncore/tictac noncore/opieftp noncore/drawpad noncore/kcheckers noncore/appskey noncore/qpdf \ noncore/kpacman +NONTMAKEAPPS := noncore/nethack + DOCS = docs/src/opie-policy single: mpegplayer/libmpeg3 -dynamic: $(APPS) +dynamic: $(APPS) $(NONTMAKEAPPS) docs: $(DOCS) $(COMPONENTS): $(LIBS) -$(APPS): $(LIBS) $(COMPONENTS) +$(NONTMAKEAPPS) $(APPS): $(LIBS) $(COMPONENTS) -$(LIBS) $(COMPONENTS) $(APPS) $(DOCS) single: +$(LIBS) $(COMPONENTS) $(NONTMAKEAPPS) $(APPS) $(DOCS) single: $(MAKE) -C $@ -f Makefile showcomponents: @echo $(LIBS) $(APPS) $(COMPONENTS) single clean: $(MAKE) -C single -f Makefile $@ - for dir in $(APPS) $(LIBS) $(COMPONENTS) $(DOCS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done + for dir in $(NONTMAKEAPPS) $(APPS) $(LIBS) $(COMPONENTS) $(DOCS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done lupdate: for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done lrelease: for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done -.PHONY: default dynamic $(LIBS) $(APPS) $(COMPONENTS) $(DOCS) single showcomponents clean +.PHONY: default dynamic $(NONTMAKEAPPS) $(LIBS) $(APPS) $(COMPONENTS) $(DOCS) single showcomponents clean |