From 2c70ffa4e72d678fa5653e6d014abc6cbc5b9989 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Wed, 6 May 2020 23:57:38 -0400 Subject: initial commit --- Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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) -- cgit v1.2.3