-
Notifications
You must be signed in to change notification settings - Fork 329
/
Makefile.joy
149 lines (125 loc) · 3.34 KB
/
Makefile.joy
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
# Makefile
#
# Top Level Makefile for the joy open source binaries
#
# Copyright (c) 2017 Cisco Systems
##
# variables
##
##
# Figure out the path and directory of the top level Makefile
##
export ROOT_PATH = $(shell pwd)
export ROOT_DIR = $(shell basename $(ROOT_PATH))
##
# The joy version variable identifies the version number of the source
# code (and not the version of the protocol).
##
export JOY_VERSION = $(shell cat VERSION)
##
# The sysname variable identifies the system by kernel name, and is
# used to define a C preprocessor symbol (in the CFLAGS variable) that
# indicates the operating system type. Note that it does *not* affect
# the endianness choice, which is picked up from <sys/types.h>.
##
export SYS_NAME = $(shell uname -s | tr "[:lower:]" "[:upper:]" )
##
# Include the variables defined from the config script to esnure our
# compile and linkage runs smoothly.
##
-include config.vars
ifndef LIBPATH
$(error error is "Please run ./config first.")
endif
ifndef SSLPATH
$(error error is "Please run ./config first.")
endif
ifndef CURLPATH
$(error error is "Please run ./config first.")
endif
ifndef COMPDEF
$(error error is "Please run ./config first.")
endif
export BINDIR = $(ROOT_PATH)/bin
export LIBDIR = $(ROOT_PATH)/lib
export TESTDIR = $(ROOT_PATH)/test
export DOCDIR = $(ROOT_PATH)/doc
##
# main executable and unit test program
##
all:
@if [ ! -d "bin" ]; then mkdir bin; fi;
@if [ ! -d "lib" ]; then mkdir lib; fi;
@cd src; $(MAKE) $(MAKEFLAGS)
libjoy.a:
@if [ ! -d "lib" ]; then mkdir lib; fi;
@cd src; $(MAKE) $(MAKEFLAGS) libjoy.a
joy:
@if [ ! -d "bin" ]; then mkdir bin; fi;
@cd src; $(MAKE) $(MAKEFLAGS) joy
unit_test:
@if [ ! -d "bin" ]; then mkdir bin; fi;
@cd src; $(MAKE) $(MAKEFLAGS) unit_test
joy_api_test:
@if [ ! -d "bin" ]; then mkdir bin; fi;
@if [ ! -d "lib" ]; then mkdir lib; fi;
@cd src; $(MAKE) $(MAKEFLAGS) joy_api_test
joy_memory_profile:
@if [ ! -d "bin" ]; then mkdir bin; fi;
@if [ ! -d "lib" ]; then mkdir lib; fi;
@cd src; $(MAKE) $(MAKEFLAGS) joy_memory_profile
joy_api_test2:
@if [ ! -d "bin" ]; then mkdir bin; fi;
@if [ ! -d "lib" ]; then mkdir lib; fi;
@cd src; $(MAKE) $(MAKEFLAGS) joy_api_test2
jfd-anon:
@if [ ! -d "bin" ]; then mkdir bin; fi;
@cd src; $(MAKE) $(MAKEFLAGS) jfd-anon
joy-anon:
@if [ ! -d "bin" ]; then mkdir bin; fi;
@cd src; $(MAKE) $(MAKEFLAGS) joy-anon
str_match_test:
@if [ ! -d "bin" ]; then mkdir bin; fi;
@cd src; $(MAKE) $(MAKEFLAGS) str_match_test
##
# testing
##
test: libjoy.a joy unit_test $(TESTDIR)/run_tests.py
$(BINDIR)/unit_test
$(TESTDIR)/run_tests.py
##
# cscope
##
cscope:
find . -name *.[ch] > cscope.files
cscope -b
##
# DOCUMENTATION
##
man: $(DOCDIR)/joy.1
man $(DOCDIR)/joy.1 > $(DOCDIR)/joy.txt
# man -Tdvi $(DOCDIR)/joy.1 > $(DOCDIR)/joy.dvi
# dvipdf $(DOCDIR)/joy.dvi
# rm -f $(DOCDIR)/joy.dvi
##
# housekeeping
##
clean:
rm -f cscope.out cscope.files
rm -f $(DOCDIR)/joy.txt
find . -name '*.pyc' -delete
@cd src; $(MAKE) clean
@for a in * .*; do if [ -f "$$a~" ] ; then rm $$a~; fi; done;
##
# remove everything not under version control
##
clobber: clean
rm -rf bin/ lib/ joy.bin config.vars test/unit_test
##
# installation via shell script
##
install: $(BINDIR)/joy $(BINDIR)/unit_test test libjoy.a
./install_joy/install-sh
pkg: $(BINDIR)/joy $(BINDIR)/unit_test test libjoy.a
./install_joy/install-sh -r $(BUILDROOT) -p $(DESTDIR)
# EOF