Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion build/unix/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ INSTALLDIR = /usr/local/bin
DOCDIR = /usr/local/share/toolshed
endif
APPS = ar2 os9 mamou cecb decb tocgen makewav dis68
APPS := $(foreach item,$(APPS),$(item)/$(item)$(SUFEXE))

DIRS = libtoolshed libnative libcecb librbf libcoco libdecb libmisc libsys \
decb cecb os9 makewav tocgen \
Expand All @@ -24,8 +23,11 @@ ifneq ($(WIN),)
PACKAGENAME = toolshed-win64-$(VERSION).tgz
else
DIRS := $(DIRS) cocofuse lst2cmt unittest
APPS := $(APPS) cocofuse
endif

APPS := $(foreach item,$(APPS),$(item)/$(item)$(SUFEXE))

all:
$(foreach dir, $(DIRS), (cd $(dir); $(MAKE));)

Expand Down