We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c9e4f9 commit fb9fc58Copy full SHA for fb9fc58
1 file changed
Makefile
@@ -1,6 +1,6 @@
1
include rules.mk
2
3
-.PHONY: force all clean test-compile test coverage manpages
+.PHONY: force all clean test-compile test coverage manpages test-install clean-install
4
.DEFAULT_GOAL = all
5
6
CXXFLAGS += -g -std=c++2a -Isrc -Wall -Wextra -Wpedantic
@@ -20,4 +20,14 @@ manpages: \
20
$(call Manpage,java_remove_annotations.7)\
21
$(call Manpage,java_remove_imports.7)\
22
23
+test-install: export buildroot = target/buildroot
24
+test-install: export bindir = /usr/bin
25
+test-install: export rpmmacrodir = /usr/lib/rpm/macros.d
26
+test-install: export mandir = /usr/share/man
27
+test-install: all manpages
28
+ ./install.sh
29
+
30
+clean-install:
31
+ @rm -rfv target/buildroot
32
33
-include target/dependencies/*.mk
0 commit comments