Updated this to be more FreeBSD-like; there was a lot of bipartisan cruft

in here that just made it a heck of a lot more confusing to maintain.
Somebody like Joerg can reality-check this at some point, when they have more
time.  For now, it works.
This commit is contained in:
Jordan K. Hubbard 1995-02-12 01:51:34 +00:00
parent 3d70f09304
commit ceb3de7af6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=6316
8 changed files with 14 additions and 149 deletions

View File

@ -1,26 +1,6 @@
.if !exists(Makefile.inc)
error:
@echo
@echo " You MUST link/copy"
@echo
@echo " Makefile.inc.NetBSD or Makefile.inc.FreeBSD"
@echo
@echo " to Makefile.inc before you can proceed !"
@echo
all: error
clean: error
cleandir: error
depend: error
install: error
.else
SUBDIR= keycap cursor fontedit fonts kcon loadfont scon \
userkeys vttest ispcvt mcon
SUBDIR+= vgaio kbdio set2061
SUBDIR+= demo
.include <bsd.subdir.mk>
.endif

View File

@ -1,25 +1,8 @@
BINDIR = /usr/local/bin
BINDIR = /usr/sbin
FONTDIR = /usr/share/misc/pcvtfonts
LIBDIR = /usr/local/lib
LIBDIR = /usr/lib
LIBMODE = 644
# for pcvt_ioctl.h
INCDIR = /usr/include/machine
INCOWN = bin
INCGRP = bin
INCMODE = 444
${INCDIR}/pcvt_ioctl.h: ${.CURDIR}/../../pcvt_ioctl.h
install ${COPY} -o ${INCOWN} -g ${INCGRP} -m ${INCMODE} \
${.CURDIR}/../../pcvt_ioctl.h ${INCDIR}
.depend: ${INCDIR}/pcvt_ioctl.h
# for FreeBSD (they nroffify "on the fly")
MAN3EXT = 3
MAN4EXT = 4
MAN5EXT = 5
MAN8EXT = 8
MANDIR = /usr/local/man/man
MAN3EXT= 3
MAN5EXT= 5
MAN8EXT= 8

View File

@ -1,18 +1,3 @@
.if !exists(${.CURDIR}/../Makefile.inc)
error:
@echo
@echo " You MUST link/copy"
@echo
@echo " ../Makefile.inc.NetBSD or ../Makefile.inc.FreeBSD"
@echo
@echo " to ../Makefile.inc before you can proceed !"
@echo
.else
PROG = cursor
PROG= cursor
.include <bsd.prog.mk>
$(PROG): $(INCDIR)/pcvt_ioctl.h
.endif

View File

@ -1,27 +1,8 @@
.if !exists(${.CURDIR}/../Makefile.inc)
error:
@echo
@echo " You MUST link/copy"
@echo
@echo " ../Makefile.inc.NetBSD or ../Makefile.inc.FreeBSD"
@echo
@echo " to ../Makefile.inc before you can proceed !"
@echo
.else
PROG = ispcvt
MAN8 = ispcvt.${MAN8EXT}
.include <bsd.prog.mk>
# special bindir, this MUST stand after include <bsd.prog.mk>
BINDIR = /usr/sbin
$(PROG): $(INCDIR)/pcvt_ioctl.h
PROG= ispcvt
MAN8= ispcvt.${MAN8EXT}
beforeinstall:
@if [ ! -d $(MANDIR)8 ] ; then \
echo making $(MANDIR)8; mkdir $(MANDIR)8; fi
.endif
.include <bsd.prog.mk>

View File

@ -1,18 +1,6 @@
.if !exists(${.CURDIR}/../Makefile.inc)
error:
@echo
@echo " You MUST link/copy"
@echo
@echo " ../Makefile.inc.NetBSD or ../Makefile.inc.FreeBSD"
@echo
@echo " to ../Makefile.inc before you can proceed !"
@echo
.else
PROG = kcon
DEVICE = /dev/ttyv0
CFLAGS += -I${.CURDIR}/../keycap -DKEYB_DEVICE=\"${DEVICE}\"
PROG= kcon
DEVICE= /dev/ttyv0
CFLAGS+= -I${.CURDIR}/../keycap -DKEYB_DEVICE=\"${DEVICE}\"
# the -Lfoo could be omitted if libkeycap.a were installed before
# making those programs here
@ -20,7 +8,3 @@ CFLAGS += -I${.CURDIR}/../keycap -DKEYB_DEVICE=\"${DEVICE}\"
LDADD = -L${.CURDIR}/../keycap -L${.CURDIR}/../keycap/obj -lkeycap
.include <bsd.prog.mk>
$(PROG): $(INCDIR)/pcvt_ioctl.h
.endif

View File

@ -1,19 +1,3 @@
.if !exists(${.CURDIR}/../Makefile.inc)
error:
@echo
@echo " You MUST link/copy"
@echo
@echo " ../Makefile.inc.NetBSD or ../Makefile.inc.FreeBSD"
@echo
@echo " to ../Makefile.inc before you can proceed !"
@echo
.else
PROG = loadfont
PROG= loadfont
.include <bsd.prog.mk>
$(PROG): $(INCDIR)/pcvt_ioctl.h
.endif

View File

@ -1,19 +1,3 @@
.if !exists(${.CURDIR}/../Makefile.inc)
error:
@echo
@echo " You MUST link/copy"
@echo
@echo " ../Makefile.inc.NetBSD or ../Makefile.inc.FreeBSD"
@echo
@echo " to ../Makefile.inc before you can proceed !"
@echo
.else
PROG= mcon
.include <bsd.prog.mk>
$(PROG): $(INCDIR)/pcvt_ioctl.h
.endif

View File

@ -1,19 +1,3 @@
.if !exists(${.CURDIR}/../Makefile.inc)
error:
@echo
@echo " You MUST link/copy"
@echo
@echo " ../Makefile.inc.NetBSD or ../Makefile.inc.FreeBSD"
@echo
@echo " to ../Makefile.inc before you can proceed !"
@echo
.else
PROG = scon
PROG= scon
.include <bsd.prog.mk>
$(PROG): $(INCDIR)/pcvt_ioctl.h
.endif