GCC=i386-aros-gcc
LIBS=-lmui -lintuition
RM=rm -f

all: hello-aros zune-hello

hello-aros: hello-aros.o
	$(GCC) $^ -o $@

hello-aros.o : hello-aros.c
	$(GCC) -c $^

zune-hello: zune-hello.o
	$(GCC) $^ -o $@ $(LIBS)

zune-hello.o : zune-hello.c
	$(GCC) -c $^

clean: 
	$(RM) *.o hello-aros zune-hello
