- Set a default PCM volume so that something can be heard when driver is
[AROS.git] / test / uae-tmpl / Makefile
blob4bf7f441f970d48ed1f0d3a39fb531be043082d5
2 CC = c++
3 CCFLAGS = -Wall -Wformat -g -DDEBUG
4 HEADERS = be_val be_ptr be_conv aros_types.h Makefile
6 all: test test-1 test-2
8 test: test.c $(HEADERS)
9 $(CC) $(CCFLAGS) test.c -o test
11 test-1: test-1.c $(HEADERS)
12 $(CC) $(CCFLAGS) test-1.c -o test-1
14 test-2: test-2.c $(HEADERS)
15 $(CC) $(CCFLAGS) test-2.c -o test-2
17 clean:
18 $(RM) -f test test-1 test-2