mirror of
https://github.com/Michaelangel007/apple2gs_shr_converter.git
synced 2025-02-17 12:30:29 +00:00
21 lines
186 B
Makefile
21 lines
186 B
Makefile
all: a2b b2d m2s xpack
|
|
|
|
clean:
|
|
rm a2b
|
|
rm b2d
|
|
rm m2s
|
|
rm xpack
|
|
|
|
a2b:
|
|
cd src_a2b && $(MAKE)
|
|
|
|
b2d:
|
|
cd src_b2d && $(MAKE)
|
|
|
|
m2s:
|
|
cd src_m2s && $(MAKE)
|
|
|
|
xpack:
|
|
cd src_xpack && $(MAKE)
|
|
|