2020-06-17 22:14:59 -04:00
|
|
|
CXX := g++
|
|
|
|
|
|
|
|
libaudiofile.a: audiofile.o
|
2020-12-03 14:26:38 -05:00
|
|
|
$(AR) rcs $@ $^
|
2020-06-17 22:14:59 -04:00
|
|
|
|
|
|
|
audiofile.o: audiofile.cpp audiofile.h aupvlist.h
|
2020-12-03 14:26:38 -05:00
|
|
|
$(CXX) -std=c++11 -O2 -I. -c $< -o $@
|
2020-06-17 22:14:59 -04:00
|
|
|
|
|
|
|
clean:
|
2020-12-03 14:26:38 -05:00
|
|
|
$(RM) audiofile.o libaudiofile.a
|
2020-06-17 22:14:59 -04:00
|
|
|
|
|
|
|
.PHONY: clean
|