Warn about attempts to use FPU when no FPU is present
[jpcrr.git] / streamtools / Makefile
blob4cfa6be3fbe8d68ab4440f7bb8a68f7258e1771a
1 all: dumpframes.exe frameshow.exe letterbox.exe streamcopy.exe rawtorgb.exe rawtoaudio.exe audiomix.exe audiofilter.exe
3 rawtoaudio.exe: rawtoaudio.o opl.o
4 g++ -g -o $@ $^ -lz `sdl-config --libs`
6 %.exe: %.o frame.o
7 gcc -g -o $@ $^ -lz `sdl-config --libs`
9 %.o: %.c frame.h
10 gcc -g -std=c99 -c -o $@ $< `sdl-config --cflags`
12 rawtoaudio.o: rawtoaudio.cpp
13 g++ -g -c -o $@ $< -DOPLTYPE_IS_OPL3 `sdl-config --cflags`
15 opl.o: opl.cpp opl.h
16 g++ -g -DINLINE=inline -DOPLTYPE_IS_OPL3 -DOPL_CPP -c -o $@ $<