blob: 9a9e4f5c0d11e57bfe5ca8f05049e1a067a64522 (
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
|
# $OpenBSD: Makefile,v 1.5 2003/08/05 11:07:43 hin Exp $
# To the future maintainer (if I get hit by a car or something): The structure
# is like this (everything in src, except the makefiles), because we want
# the upgrade process to be easy, without building and installing 5 different
# libs and without making a hairy Makefile.bsd-wrapper
#
# Anomalies:
# - config.h and arla-version.h have to be pre-built and put in src/include.
# config.h contains macros for endianness, but they are only used in one
# place and will be replaced on OpenBSD. They have to be placed in
# src/include because we want to reduce the memory footprint of mkdep
# (yes, it's a real problem).
#
.if !make(install)
SUBDIR += usr.sbin/ydr
.endif
SUBDIR += lib libexec usr.sbin
## To be able to make depend in libarla we have to have ydr
beforedepend:
cd usr.sbin/ydr && make depend && exec make
.include <bsd.dep.mk>
.include <bsd.subdir.mk>
|