-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
45 lines (28 loc) · 966 Bytes
/
Makefile
File metadata and controls
45 lines (28 loc) · 966 Bytes
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
.PHONY: build betaJar anyReleaseJar changelog run-tests jformdesigner jfd
build:
./gradlew build
# create beta-release
# sets beta flag in Main.java and increases version number
betaJar:
./gradlew betaJar
# create release, first set the version and beta-flag in Main.java
# does not inc version number, build the currently specified version
anyReleaseJar:
./gradlew anyReleaseJar
# create changelog
changelog:
./gradlew changelog
run-tests:
./gradlew run-tests
# generate java source from jfd files
# https://www.formdev.com/jformdesigner/doc/command-line
jformdesigner:
./gradlew :compileJava
@echo ''
@echo ''
@java -classpath "./_utils/jfd-8.3.1-b470/lib/JFormDesigner.jar" \
"com.jformdesigner.application.CommandLineMain" \
--generate --recursive --verbose \
"./jClipCorn.jfdproj" \
"./src/main/de/jClipCorn/gui/frames/"
jfd: jformdesigner