From 1a5f7b4f013e7294d40cd8539ae6d9e16ddf423c Mon Sep 17 00:00:00 2001 From: cbdev Date: Sun, 24 Sep 2023 13:14:53 +0200 Subject: Initial version for unpacking 16bit little-endian multitrack WAV --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3c88a9d --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +CFLAGS = -Wall -Wpedantic + +all: wavextract + +wavextract: wavextract.c + +wavextract.exe: export CC = x86_64-w64-mingw32-gcc +wavextract.exe: wavextract.c + $(CC) $(CFLAGS) $(LDFLAGS) $< $(OBJS) $(LDLIBS) -o $@ + +clean: + $(RM) *.o + $(RM) wavextract + $(RM) wavextract.exe -- cgit v1.2.3