Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'library/unix/Makefile')
-rw-r--r--library/unix/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/library/unix/Makefile b/library/unix/Makefile
new file mode 100644
index 00000000..3b50301c
--- /dev/null
+++ b/library/unix/Makefile
@@ -0,0 +1,12 @@
+all: debug
+
+debug:
+ @+make -f debug.mk all
+
+release:
+ @+make -f release.mk all
+
+clean:
+ @+make -f build.mk clean
+
+.PHONY: all clean debug release