We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a8a2af commit c54d3d3Copy full SHA for c54d3d3
Makefile
@@ -7,6 +7,7 @@ BUILD=./build
7
LIBS=./libs
8
DIST=./dist
9
SRC=./src
10
+EXAMPLES=./examples
11
12
XMLIN=$(SRC)/fxml
13
XMLOUT=$(BUILD)/fxml
@@ -41,4 +42,6 @@ pack:
41
42
43
install:
44
mkdir -p $(DESTDIR)$(PREFIX)/bin
- install -m 0755 dist/NoticEditor.jar $(DESTDIR)$(PREFIX)/bin/noticed.jar
45
+ mkdir -p $(DESTDIR)$(PREFIX)/share/NoticEditor/examples
46
+ install -m 0755 $(DIST)/$(OUTPUT) $(DESTDIR)$(PREFIX)/bin/$(OUTPUT)
47
+ cp -rf $(EXAMPLES) $(DESTDIR)$(PREFIX)/share/NoticEditor/examples
0 commit comments