summaryrefslogtreecommitdiffstats
path: root/usr.bin/doscmd/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Fixed the BINGRP handling mess.ru2001-09-131-3/+3
| | | | | | | | EXEGRP and EXEMODE are used to install DOS (EXE format) binaries. doscmd(1) can optionally be installed as ``setgid kmem''. Hence the assignment operator for EXEGRP. PR: bin/30538
* Sort SRCS.tg2001-08-031-2/+2
|
* - Fix file names <:-(,tg2001-07-301-14/+12
| | | | | | | - attempt to find the X includes and libraries better, - sort some things. Submitted by: bde
* Fix bugs introduced in 1.26:tg2001-07-261-10/+8
| | | | | | | | - restore -I. in CFLAGS - add dependencies of objects on font headers - missing dependencies of font headers on their sources Suggested by: bde
* Fix breakage introduced in rev 1.26, with the introduction ofsheldonh2001-07-251-3/+3
| | | | | | | absoluate pathnames starting with /usr/src. This fixes the installworld target for the case where the source tree is not in /usr/src.
* Remove non-existent (missing?) fonts.alias from beforeinstall: targetache2001-07-241-1/+1
|
* Add -I${.OBJDIR} to pick generated font*.hache2001-07-241-1/+1
|
* Rewrite video emulation. Features:tg2001-07-241-7/+30
| | | | | | | | | | | | | | | | | - slightly more accurate VGA hardware emulation; - more int 10 functions, especially wrt to palette handling; - first shot at graphics support; - mode switching. Bugs: - graphics too slow; - only 16 color modes work for now; - works only under X, and only with 16 bit TrueColor visuals; - far from being genuinely useful (I can play an old EGA game now, though (mahjongg.exe)). Also, the code has been cleaned up a bit (more to come in a separate commit).
* Install a VGA font for the X11 mode. Use a line liketg2000-06-231-5/+13
| | | | | | | | | xset fp+ /usr/libdata/doscmd/fonts in your .xsession to activate it. Document X11_FONT option in .doscmdrc. Open window if $DISPLAY is set.
* Oops, revert previous commitkris2000-05-071-2/+2
|
* Update device references.kris2000-05-071-2/+2
|
* Add and document a NO_X knob to force disabling of X support in doscmdkris2000-03-191-2/+2
| | | | Requested by: sysop@silver.komanda.com.ua
* Don't build with X support if DESTDIR is defined. This preventsmarcel2000-01-051-21/+18
| | | | | | | | breaking a cross-build caused by taking the X libraries on the build machine. In general this means that we never compile with X support. The user has to manually compile doscmd for that. Suggested by: bde, imp (among others)
* $Id$ -> $FreeBSD$peter1999-08-281-1/+1
|
* X11 include directory may not actually contain any header file, check forluoqi1999-04-171-2/+2
| | | | a specific one (X11/X.h).
* Disable setgid kmem for now.imp1999-03-161-2/+2
|
* Use `${CC} ${CFLAGS} ${LDFLAGS} -nostdlib -Wl...' instead ofbde1999-02-171-5/+5
| | | | | | | `ld ... <fudged ${LDFLAGS}>' to invoke the linker. This gets the flags and standard library paths right without complications. Unfortunately, it doesn't help for the X11 library paths -- cc only appends /aout for standard library paths.
* Look for aout X libraries at the right place.luoqi1999-02-161-4/+10
|
* Don't pass -static in ${LDFLAGS} to ld for building doscmd.kernel,bde1999-02-151-2/+2
| | | | | | since it means -s (strip), and static linkage is forced correctly anyway. Other things in ${LDFLAGS} are still bogusly passed to ld. This only affects the aout case.
* Use the new variable NEED_LIBNAMES instead of includingjdp1999-01-221-2/+2
| | | | <bsd.libnames.mk> explicitly.
* ELFize. In fact, doscmd is ELF natural -- there is no need for a loaderluoqi1998-09-241-1/+15
| | | | | since ELF executables are loaded well above the low memory region that DOS operates in.
* Fixed double slashes in pathnames.bde1998-05-311-3/+3
|
* ELF preparation step 2:sos1998-05-261-3/+3
| | | | | | | | | | | | | | Move a.out libraries to /usr/lib/aout to make space for ELF libs. Make rtld usr /usr/lib/aout as default library path. Make ldconfig reject /usr/lib as an a.out library path. Fix various Makefiles for LIBDIR!=/usr/lib breakage. This will after a make world & reboot give a system that no longer uses /usr/lib/*, infact one could remove all the old libraries there, they are not used anymore. We are getting close to an ELF make world, but I'll let this all settle for a week or two...
* Honour -static in LDFLAGS.bde1998-03-211-9/+8
| | | | | Install using ${INSTALL}, not `install'. Install generated files using ${COPY}, not -c. Install using a single command when this is easy.
* Fixed DPADD. ${LIBGCC} must be added explicitly since the defaultbde1997-12-161-13/+22
| | | | | | | | | | | | | | | | | | linkage rule is overridden. The -L option must be in ${DPADD} so that `make checkdpadd' works. Actually use ${DPADD}. FIxed missing dependencies for doscmd. Use ${LIBCRT0} instead of a hard-coded path in the rule for doscmd. Added comments about the kludges used to build 2 binaries and 2 data files in one directory. It shouldn't be done this way. The dependencies on sources took extra work to get right, and the dependencies on objects are still broken (one set is missing and the other has the wrong libs). Fixed some style bugs while I'm here: - don't override the (correct) default for MAN1. - use `beforeinstall', not `afterinstall' to install auxiliary files. `afterinstall' is for fixing messes made by `install'.
* Add support for EMS emulation to doscmd. This requires changing thejlemon1997-09-301-8/+14
| | | | | | | | | interface for callbacks to doscmd from DOS, obsoleting the instbsdi redirector. (redir.com replaces it) A temporary hack is in place so the instbsdi program will (hopefully) work in the short term. Submitted by: Helmut F. Wirth <hfwirth@ping.at>
* Make X11 support in doscmd dependent on the actual libX11.a library andjlemon1997-08-281-2/+2
| | | | | | include directory, rather than X11BASE. This fixes the build for people who only have the shared X11 distribution installed. Requested-by: A Joseph Koshy <koshy@india.hp.com>
* Clean up Makefile, make compiling in X support dependent on ${X11BASE}.jlemon1997-08-181-26/+14
|
* Add support for XMS memory to doscmd.jlemon1997-08-151-7/+5
| | | | Submitted by: Helmut F. Wirth <hfwirth@ping.at>
* Cleanup and use /usr/libdata/doscmd nowache1997-08-121-8/+6
|
* Build instbsdi.exe in obj directory (make world stopper)ache1997-08-091-4/+4
|
* Add a valuable binary that enables I/O to U**X mounted disks.dyson1997-08-091-1/+4
|
* Add the makefile for doscmd.dyson1997-08-091-0/+61
OpenPOWER on IntegriCloud