-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMakefile
70 lines (48 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#
# Top-level makefile for the IPP Everywhere Printer Self-Certification tools.
#
# Copyright © 2015-2024 by the ISTO Printer Working Group.
#
# Licensed under Apache License v2.0. See the file "LICENSE" for more
# information.
#
include Makedefs
#
# Make all targets...
#
all:
(cd libcups; $(MAKE) $(MFLAGS) all)
(cd selfcert; $(MAKE) $(MFLAGS) all)
#
# Remove object and target files...
#
clean:
(cd libcups; $(MAKE) $(MFLAGS) clean)
(cd selfcert; $(MAKE) $(MFLAGS) clean)
#
# Remove all non-distribution files...
#
distclean: clean
$(RM) Makedefs config.h config.log config.status
-$(RM) -r autom4te*.cache
#
# Make dependencies
#
depend:
(cd libcups; $(MAKE) $(MFLAGS) depend)
(cd selfcert; $(MAKE) $(MFLAGS) depend)
#
# Run test suite...
#
test: all
./testbuild.sh
#
# Make distribution files for the web site.
#
.PHONEY: dist
dist: all
scripts/make-ippeveselfcert.sh $(IPPEVESELFCERT_DOCVERSION) $(IPPEVESELFCERT_SWVERSION)
#
# Don't run top-level build targets in parallel...
#
.NOTPARALLEL: