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 fbc60ab commit 1db7bdcCopy full SHA for 1db7bdc
.gitignore
@@ -22,7 +22,6 @@
22
/*.tar.xz
23
/build-aux
24
/libtool
25
-/Makefile
26
/TAGS
27
/GPATH
28
/GRTAGS
Makefile
@@ -0,0 +1,27 @@
1
+all: build
2
+ ninja -C build
3
+.PHONY: all
4
+
5
+build:
6
+ meson build
7
8
+clean:
9
+ rm -rf build/
10
+.PHONY: clean
11
12
+install: build
13
+ ninja -C build install
14
+.PHONY: install
15
16
+format:
17
+ @for f in lib/*.[ch] tool/*.[ch]; do \
18
+ echo $$f; \
19
+ astyle --quiet --options=.astylerc $$f; \
20
+ done
21
+.PHONY: format
+install-tree: build
+ rm -rf build/install-tree
+ DESTDIR=install-tree ninja -C build install
+ tree build/install-tree
+.PHONY: install-tree
0 commit comments