mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-22 20:15:17 +00:00
94db04aaf0
casted the wrong thing?
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
|