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
18 $(RM
) -f
test test-1 test-2