27 lines
486 B
Makefile
27 lines
486 B
Makefile
|
.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
|