Fix source directories to not conflict with Linux,OSX executable filenames

This commit is contained in:
Michaelangel007 2016-08-24 10:16:51 -07:00
parent 8bb758bec9
commit 18bbab65f2
15 changed files with 14 additions and 4 deletions

View File

@ -1,10 +1,20 @@
all: a2b b2d m2s
all: a2b b2d m2s xpack
clean:
rm a2b
rm b2d
rm m2s
rm xpack
a2b:
cd a2fcbmp && $(MAKE)
cd src_a2b && $(MAKE)
b2d:
cd src && $(MAKE)
cd src_b2d && $(MAKE)
m2s:
echo "Missing sources!"
cd src_m2s && $(MAKE)
xpack:
cd src_xpack && $(MAKE)