mirror of
https://github.com/n64decomp/sm64.git
synced 2024-11-12 04:15:02 -05:00
13 lines
204 B
Makefile
13 lines
204 B
Makefile
CXX := g++
|
|
|
|
libaudiofile.a: audiofile.o
|
|
$(AR) rcs $@ $^
|
|
|
|
audiofile.o: audiofile.cpp audiofile.h aupvlist.h
|
|
$(CXX) -std=c++11 -O2 -I. -c $< -o $@
|
|
|
|
clean:
|
|
$(RM) audiofile.o libaudiofile.a
|
|
|
|
.PHONY: clean
|