mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-10-31 10:13:35 +00:00
26 lines
513 B
Makefile
26 lines
513 B
Makefile
include Makefile.inc
|
|
|
|
all:
|
|
cd asoft_basic-utils && make
|
|
cd asoft_presenter && make
|
|
cd dos33fs-utils && make
|
|
cd hgr-utils && make
|
|
cd gr-utils && make
|
|
|
|
install:
|
|
cd asoft_basic-utils && make install
|
|
cd asoft_presenter && make install
|
|
cd dos33fs-utils && make install
|
|
cd hgr-utils && make install
|
|
cd gr-utils && make install
|
|
|
|
clean:
|
|
cd asoft_basic-utils && make clean
|
|
cd asoft_presenter && make clean
|
|
cd dos33fs-utils && make clean
|
|
cd hgr-utils && make clean
|
|
cd gr-utils && make clean
|
|
rm -f *~
|
|
|
|
test:
|