build: ajout de la compilation du répertoire "programs"

This commit is contained in:
Nicolas Hordé 2007-03-23 16:49:56 +00:00
parent 1582591ab8
commit 33abc91a3e
1 changed files with 11 additions and 0 deletions

View File

@ -15,8 +15,15 @@ all:
make make
cd .. cd ..
cd programs
make
cd ..
copy: clean all copy: clean all
copy noyau\systeme.sys b: copy noyau\systeme.sys b:
copy commande\*.ce b:
copy lib\*.lib b:
copy programs\*.ce b:
clean: clean:
cd lib cd lib
@ -34,3 +41,7 @@ clean:
cd commande cd commande
make clean make clean
cd .. cd ..
cd programs
make clean
cd ..