summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRobert de Bath <rdebath@poboxes.com>1996-12-01 16:58:31 +0100
committerLubomir Rintel <lkundrak@v3.sk>2013-10-23 23:34:16 +0200
commitf8de35da65c5d93bb733073cf40da154bc1c0748 (patch)
treed28c7644739a24402376d24cb0020ea410a9ccff /Makefile
parentc218c617b5be443b7968308506969ad2b726d73c (diff)
downloaddev86-f8de35da65c5d93bb733073cf40da154bc1c0748.tar.gz
Import Dev86src-0.0.9.tar.gzv0.0.9
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile27
1 files changed, 22 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index f9032fc..375fa72 100644
--- a/Makefile
+++ b/Makefile
@@ -8,11 +8,12 @@ LIBS2= libbsd
LIBS= libc $(LIBS2)
EXTRAS= man dis88 doselks
TESTDIRS= tests
-DISTFILES=Makefile Make.defs README Changes README.ash Libc_version make_bcc.bat
+DISTFILES=Makefile Make.defs README Changes Libc_version Uninstall
DISTDIRS= $(LIBS2) elksemu $(TESTDIRS) $(EXTRAS)
+DOSBITS= mkcompile compile.bat later.c
default: dummy
- @echo You have to do make install as root
+ @echo "You have to do 'make install' as root"
@echo Or:
@echo
@echo '$ make bcc'
@@ -21,19 +22,32 @@ default: dummy
@echo '$ su -c "make install-lib"'
@echo '$ make elksemu'
@echo '$ su -c "make install-emu"'
+ @echo '$ su -c "make install-man"'
@echo
@echo 'Other libraries are built with:'
@echo '$ su -c "make install-lib2"'
@echo
- @echo 'Others pieces are: "make tests" and "make extras"'
+ @echo "Or do 'make install-all' for _everything_"
dummy:
@if [ -f .runme ] ; then sh .runme ; rm .runme ; fi
-install: install-bcc install-lib install-emu
+install: install-bcc install-lib install-emu install-man
# Do _everything_!
-install-all: realclean config install install-lib2 install-extras realclean
+install-all:
+ make realclean
+ make config
+ make install-bcc
+ make install-man
+ make install-lib-fast
+ make install-lib-dos
+ make install-lib-bios
+ make install-lib-386
+ make install-lib
+ make install-emu
+ make -C dis88 install
+ make realclean
config:
make -C libc config
@@ -110,6 +124,9 @@ install-emu: dummy
( echo 'Must do "make library" first' && exit 1 )
make -C elksemu install
+install-man: dummy
+ make -C man install
+
install-extras: dummy
@for i in $(EXTRAS) ; do make -C $$i install || exit 1; done