Added missing properties.
[AROS.git] / test / oop2 / makefile
bloba713eb827ca9fe5ec163ec41e82033f935abb71c
1 CC = gcc
2 CFLAGS = -O2 -Wall
4 LINS =
5 SRC = *.c
7 OBJS = test.o method.o timerclass.o oop.o support.o
9 all: oop
11 clean:
12 rm $(OBJS) oop
14 veryclean: clean
15 rm .dep
17 depend:
18 touch .dep
19 makedepend -f.dep $(SRC)
21 oop: $(OBJS)
22 $(CC) $(CFLAGS) $(OBJS) $(LIBS) -o oop
24 -include .dep