mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-05 07:59:23 +00:00
7fe1aaca86
The makefile contains a reference to /sys/dev/ppbus. What really should be done is copy the header files to /usr/include/sys/dev/ppbus. PR: kern/16767 Submitted by: Jin Guojun (FTG staff) <jin@gracie.lbl.gov>
13 lines
277 B
Makefile
13 lines
277 B
Makefile
# Makefile to build LCD control software for ppi(4) interface.
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PROG= ppilcd
|
|
NOMAN= YES
|
|
|
|
# XXX This should not be done in fact. The header files should
|
|
# be copied to /usr/include/sys/dev/ppbus during make world
|
|
CFLAGS += -I/sys/dev/ppbus
|
|
|
|
.include <bsd.prog.mk>
|