diff options
| author | cc4b05f61e2d8f77114750386c9f9a60 <cc4b05f61e2d8f7@7114750386c9f9a60> | 2023-05-11 14:38:47 +0000 |
|---|---|---|
| committer | cc4b05f61e2d8f77114750386c9f9a60 <cc4b05f61e2d8f7@7114750386c9f9a60> | 2023-05-11 14:38:47 +0000 |
| commit | f5450bfd35a6410528d124f534c2b1a958cafe51 (patch) | |
| tree | a808b12d6ad5343fabdec7b8918df6b4d844e03f /Makefile | |
| parent | 5ad2bb7a6ac7e97c031908d2439808a00fff6214 (diff) | |
dmsdos-0.9.2.2 addeddmsdos-0.9.2.2
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7dd2fb8 --- /dev/null +++ b/Makefile @@ -0,0 +1,31 @@ + +all: patch compile + +patch: + sh patch.sh + +kernelconf: patch + sh conf.sh + +compile: kernelconf + make -C src + +install: + make -C src + make -C src install + make -C man install + sh magic.sh + +uninstall: + make -C src uninstall + make -C man uninstall + +mrproper: + rm -f *~ + rm -f doc/*~ + rm -f man/*~ + rm -f patches/*~ + make -C src mrproper + +dist: + sh mkdist.sh |
