aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2020-05-06 23:57:38 -0400
committerB. Watson <yalhcru@gmail.com>2020-05-06 23:57:38 -0400
commit2c70ffa4e72d678fa5653e6d014abc6cbc5b9989 (patch)
treeb5e514f8e9065016d8bd76747086f68e62036d6e /Makefile
downloadmiragextract-2c70ffa4e72d678fa5653e6d014abc6cbc5b9989.tar.gz
initial commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..6e9e402
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,19 @@
+PROJ=miragextract
+
+# Packagers: override these on make command line as needed.
+OPTFLAGS=-O2
+LDEXTRA=
+
+SNDFILE_CFLAGS:=$(shell pkg-config --cflags sndfile)
+SNDFILE_LIBS:=$(shell pkg-config --libs sndfile)
+
+MIRAGE_CFLAGS:=$(shell pkg-config --cflags libmirage)
+MIRAGE_LIBS:=$(shell pkg-config --libs libmirage)
+
+CFLAGS=-Wall $(OPTFLAGS) $(MIRAGE_CFLAGS) $(SNDFILE_CFLAGS)
+LDFLAGS=$(LDEXTRA) $(MIRAGE_LIBS) $(SNDFILE_LIBS)
+
+all: $(PROJ)
+
+test: all
+ ./$(PROJ)