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 c97981c commit f5639ebCopy full SHA for f5639eb
Makefile
@@ -0,0 +1,16 @@
1
+ifeq ($(CMAKE),)
2
+CMAKE := cmake
3
+endif
4
+
5
+.PHONY: all
6
+all: build/Makefile
7
+ @$(MAKE) --no-print-directory -C build
8
9
+%: build/Makefile
10
+ @$(MAKE) --no-print-directory -C build $@
11
12
+build/Makefile: | build
13
+ @cd build && $(CMAKE) $(CMAKE_ARGS) ..
14
15
+build:
16
+ @mkdir -p $@
0 commit comments