mediaextract/Makefile

90 lines
2.0 KiB
Makefile
Raw Normal View History

2012-12-28 01:13:50 +00:00
PREFIX=/usr/local
2012-12-27 16:02:19 +00:00
BUILDDIR=build
2012-12-29 00:07:41 +00:00
OBJ=\
$(BUILDDIR)/audioextract.o \
$(BUILDDIR)/riff.o \
$(BUILDDIR)/aiff.o \
2012-12-29 00:07:41 +00:00
$(BUILDDIR)/ogg.o \
2012-12-29 16:48:36 +00:00
$(BUILDDIR)/mpg123.o \
2012-12-29 21:46:34 +00:00
$(BUILDDIR)/mp4.o \
2012-12-29 00:07:41 +00:00
$(BUILDDIR)/id3.o \
$(BUILDDIR)/midi.o \
2012-12-29 04:20:01 +00:00
$(BUILDDIR)/mod.o \
2012-12-29 05:31:30 +00:00
$(BUILDDIR)/s3m.o \
2012-12-31 20:02:57 +00:00
$(BUILDDIR)/it.o \
2013-01-01 05:41:01 +00:00
$(BUILDDIR)/asf.o \
$(BUILDDIR)/bink.o
2012-12-27 16:02:19 +00:00
CC=gcc
2012-12-31 16:46:07 +00:00
CFLAGS=-Wall -pedantic -Wextra -Werror -std=gnu99 -O2 -fmessage-length=0 -g
2012-12-27 16:02:19 +00:00
BIN=$(BUILDDIR)/audioextract
2012-12-28 01:13:50 +00:00
.PHONY: all clean install uninstall
2012-12-27 01:05:02 +00:00
2012-12-27 16:02:19 +00:00
all: $(BIN)
$(BIN): $(OBJ)
$(CC) $(CFLAGS) $(OBJ) -o $@
2013-01-01 21:16:13 +00:00
$(BUILDDIR)/audioextract.o: src/audioextract.c \
src/audioextract.h \
src/ogg.h \
src/riff.h \
src/aiff.h \
src/mpg123.h \
src/mp4.h \
src/id3.h \
src/midi.h \
src/mod.h \
src/s3m.h \
src/it.h \
src/asf.h \
src/bink.h
2012-12-27 16:02:19 +00:00
$(CC) $(CFLAGS) $< -o $@ -c
2013-01-01 21:16:13 +00:00
$(BUILDDIR)/riff.o: src/riff.c src/audioextract.h src/riff.h
$(CC) $(CFLAGS) $< -o $@ -c
2013-01-01 21:16:13 +00:00
$(BUILDDIR)/aiff.o: src/aiff.c src/audioextract.h src/aiff.h
2012-12-27 16:02:19 +00:00
$(CC) $(CFLAGS) $< -o $@ -c
2013-01-01 21:16:13 +00:00
$(BUILDDIR)/ogg.o: src/ogg.c src/audioextract.h src/ogg.h
2012-12-27 16:02:19 +00:00
$(CC) $(CFLAGS) $< -o $@ -c
2012-12-27 01:05:02 +00:00
2013-01-01 21:16:13 +00:00
$(BUILDDIR)/mpg123.o: src/mpg123.c src/audioextract.h src/mpg123.h
2012-12-27 17:17:49 +00:00
$(CC) $(CFLAGS) $< -o $@ -c
2012-12-27 01:05:02 +00:00
2013-01-01 21:16:13 +00:00
$(BUILDDIR)/mp4.o: src/mp4.c src/audioextract.h src/mp4.h
2012-12-29 21:46:34 +00:00
$(CC) $(CFLAGS) $< -o $@ -c
2013-01-01 21:16:13 +00:00
$(BUILDDIR)/id3.o: src/id3.c src/audioextract.h src/id3.h
2012-12-27 19:09:06 +00:00
$(CC) $(CFLAGS) $< -o $@ -c
2013-01-01 21:16:13 +00:00
$(BUILDDIR)/midi.o: src/midi.c src/audioextract.h src/midi.h
2012-12-28 17:23:27 +00:00
$(CC) $(CFLAGS) $< -o $@ -c
2013-01-01 21:16:13 +00:00
$(BUILDDIR)/mod.o: src/mod.c src/audioextract.h src/mod.h
2012-12-29 00:07:41 +00:00
$(CC) $(CFLAGS) $< -o $@ -c
2013-01-01 21:16:13 +00:00
$(BUILDDIR)/s3m.o: src/s3m.c src/audioextract.h src/s3m.h
2012-12-29 04:20:01 +00:00
$(CC) $(CFLAGS) $< -o $@ -c
2013-01-01 21:16:13 +00:00
$(BUILDDIR)/it.o: src/it.c src/audioextract.h src/it.h
2012-12-29 05:31:30 +00:00
$(CC) $(CFLAGS) $< -o $@ -c
2013-01-01 21:16:13 +00:00
$(BUILDDIR)/asf.o: src/asf.c src/audioextract.h src/asf.h
2012-12-31 20:02:57 +00:00
$(CC) $(CFLAGS) $< -o $@ -c
2013-01-01 21:16:13 +00:00
$(BUILDDIR)/bink.o: src/bink.c src/audioextract.h src/bink.h
2013-01-01 05:41:01 +00:00
$(CC) $(CFLAGS) $< -o $@ -c
2012-12-29 05:45:04 +00:00
install: $(PREFIX)/bin/audioextract
$(PREFIX)/bin/audioextract: $(BIN)
install -s -D $(BIN) "$@"
2012-12-28 01:13:50 +00:00
uninstall:
rm -f "$(PREFIX)/bin/audioextract"
2012-12-27 01:05:02 +00:00
clean:
2012-12-28 01:13:50 +00:00
rm -f $(BIN) $(OBJ)