mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
Use :H instead of .CURDIR-relative pathing to simplify make output, etc. MFC after: 1 week Sponsored by: Dell EMC Isilon
13 lines
188 B
Makefile
13 lines
188 B
Makefile
# From: @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR:H}/common_source
|
|
|
|
PROG= pac
|
|
MAN= pac.8
|
|
|
|
CFLAGS+= -I${.CURDIR:H}/common_source
|
|
|
|
LIBADD= lpr
|
|
|
|
.include <bsd.prog.mk>
|