mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2025-10-30 08:01:01 +00:00
12 lines
290 B
Makefile
12 lines
290 B
Makefile
CXX := g++
|
|
|
|
libaudiofile.a: audiofile.o
|
|
ar rcs libaudiofile.a audiofile.o
|
|
|
|
audiofile.o: audiofile.cpp audiofile.h aupvlist.h
|
|
$(CXX) -std=c++11 -DNDEBUG -fno-rtti -fno-exceptions -fvisibility-inlines-hidden -O2 -I. -c audiofile.cpp
|
|
|
|
clean:
|
|
rm -f audiofile.o libaudiofile.a
|
|
|
|
.PHONY: clean
|