-
Notifications
You must be signed in to change notification settings - Fork 7
/
Makefile
45 lines (36 loc) · 1.01 KB
/
Makefile
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
### Makefile -- BSD Owl
# Author: Michael Grünewald
# Date: Fri Feb 10 16:50:40 GMT 2006
# BSD Owl Scripts (https://github.com/michipili/bsdowl)
# This file is part of BSD Owl Scripts
#
# Copyright © 2002–2017 Michael Grünewald. All Rights Reserved.
#
# This file must be used under the terms of the BSD license.
# This source file is licensed as described in the file LICENSE, which
# you should have received as part of this distribution.
PACKAGE= bsdowl
OFFICER= michipili@gmail.com
VERSION= 3.0.0-current
SUBDIR+= bps
SUBDIR+= ocaml
SUBDIR+= texmf
SUBDIR+= langc
SUBDIR+= noweb
SUBDIR+= config
SUBDIR+= script
SUBDIR+= misc
SUBDIR+= www
SUBDIR+= support
CONFIGURE= Makefile.inc.in
CONFIGURE+= bps/bps.bpsconfig.mk.in
CONFIGURE+= testsuite/Makefile.inc.in
PROJECTDISTEXCLUDE= Wiki
test: .PHONY
${.CURDIR}/Library/Ancillary/testtool -D -I -a
.MAKEFLAGS: -I${.CURDIR}/Library/Make
.for subdir in ${SUBDIR}
.MAKEFLAGS: -I${.CURDIR}/${subdir}
.endfor
.include "generic.project.mk"
### End of file `Makefile'