diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-12-09 19:57:56 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-12-09 19:57:56 -0800 |
commit | 8b21242b0c9c87e4308cfdb8bc9c73d3b004ed0b (patch) | |
tree | 3082b14638099f4e4f2bd2fe4983f68b3883190c /dosutil | |
parent | e535becb865292360e808996409c1513df7d2be7 (diff) | |
download | syslinux-8b21242b0c9c87e4308cfdb8bc9c73d3b004ed0b.tar.gz syslinux-8b21242b0c9c87e4308cfdb8bc9c73d3b004ed0b.tar.xz syslinux-8b21242b0c9c87e4308cfdb8bc9c73d3b004ed0b.zip |
Makefile: add DOS utilities as installables
Add the DOS utilities as auxilliary installables
In case someone wants them...
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'dosutil')
-rw-r--r-- | dosutil/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/dosutil/Makefile b/dosutil/Makefile index f3f90b3e..ecb695a2 100644 --- a/dosutil/Makefile +++ b/dosutil/Makefile @@ -1,6 +1,9 @@ # # OpenWatcom compile and link utility # +topdir = .. +include $(topdir)/MCONFIG + WCL = wcl WCLOPT = -6 -osx -mt -bt=DOS -l=COM @@ -42,4 +45,7 @@ clean: tidy spotless: clean -rm -f *.com *.sys *~ +installer: all +install: installer + install -m 644 $(TARGETS) $(INSTALLROOT)$(AUXDIR) |