mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 00:04:14 -05:00
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>
12 lines
277 B
Makefile
12 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>
|