blob: 76503abe604b106d709813e2cc5bff2b54b92162 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# $OpenBSD: Makefile,v 1.9 2001/09/07 20:47:18 brad Exp $
PROG= config
BINDIR= /usr/sbin
SRCS= files.c gram.y hash.c main.c mkheaders.c mkioconf.c mkmakefile.c \
mkswap.c pack.c scan.l sem.c util.c \
ukc.c misc.c ukcutil.c cmd.c exec.c
.if (${MACHINE_ARCH} == "powerpc") || (${MACHINE_ARCH} == "hppa") || \
(${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "sparc64")
CFLAGS+=-DELF_SUPPORT
SRCS+= exec_elf.c
.else
CFLAGS+=-DAOUT_SUPPORT
SRCS+= exec_aout.c
.endif
CFLAGS+=-I${.CURDIR} -I.
# This program actually requires "flex" (not just any old lex).
# Also note that it does not use -ll
LEX=flex
LDADD= -lkvm
DPADD= ${LIBKVM}
CLEANFILES=gram.c scan.c y.tab.h
MAN= config.8
.include <bsd.prog.mk>
.depend: gram.c scan.c
|