mediaextract/Makefile

10 lines
125 B
Makefile
Raw Normal View History

2012-12-27 01:05:02 +00:00
.PHONY: all clean
all: audioextract
2012-12-27 01:05:02 +00:00
audioextract: audioextract.c
2012-12-27 01:05:02 +00:00
gcc -Wall -std=c99 -O2 $< -o $@
clean:
rm audioextract