-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
64 lines (51 loc) · 1.78 KB
/
Makefile
File metadata and controls
64 lines (51 loc) · 1.78 KB
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
##########################################################################
# Makefile
#
# This software is primarially a logging utility, but also includes
# a few other basic tools, like StringBuilder and currentTimeMillis()
#
# Copyright (c) 2020 Wade Ryan
#
# If you have questions or improvements email me at
# wryan67@gmail.com
#
# This software is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# The given code is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You can view the contents of the licence at <http://www.gnu.org/licenses/>.
##########################################################################
# Sorry, I hate make and cmake, but at least I give you a
# make file interface, so you can use make like you're used to
##########################################################################
all: compile
help:
./build.sh help
clean: chmod
@./build.sh clean
compile: chmod
@./build.sh compile
lib: chmod
@./build.sh package
package: chmod
@./build.sh package
install: chmod
@sudo ./build.sh install
demos: chmod
@./build.sh demos
exe: chmod
@./build.sh demos
static: chmod
@./build.sh static
remove: chmod
@sudo ./build.sh remove
chmod:
@chmod 755 build.sh
jni:
javac -cp ../core/target/core-2020neo.jar:../basetypes/target/basetypes-2020neo.jar:../messages/target/messages-2020neo.jar -h src/ccsi/idg/jni ../core/src/main/java/com/acxiom/ccsi/idmgmt/handler/JNISession.java