- Set a default PCM volume so that something can be heard when driver is
[AROS.git] / test / uae / Makefile
blobd224c605cc111f5adc4a8c6cbf25a300a3e3f0f6
2 CXX = g++
3 CXXFLAGS = -Wall -g -DDEBUG
5 all :
6 $(CXX) $(CXXFLAGS) -S test.c -o test.S
7 $(CXX) $(CXXFLAGS) -c test.c -o test.o
8 $(CXX) $(CXXFLAGS) -O6 -S test.c -o test6.S
9 $(CXX) $(CXXFLAGS) -O6 -c test.c -o test6.o
10 $(CXX) $(CXXFLAGS) -O0 test.c -o t
11 ./t
13 clean :
14 -rm t test.S test.o test6.S test6.o