cos2000v1/MAKEFILE

53 lines
586 B
Plaintext
Raw Normal View History

all:
cd commande
make
cd ..
cd programs
make
cd ..
cd noyau
make
cd ..
cd contribs
make
cd ..
cd install
make
cd ..
copy:
make all
copy commande\*.exe ..\binaires\data
copy programs\*.com ..\binaires\data
copy programs\*.rip ..\binaires\data
copy noyau\*.sys ..\binaires\data
copy noyau\*.bin ..\binaires\data
copy contribs\*.com ..\binaires\data
copy install\*.com ..\binaires
make clean
clean:
cd commande
make clean
cd ..
cd programs
make clean
cd ..
cd noyau
make clean
cd ..
cd contribs
make clean
cd ..
cd install
make clean
cd ..