SRCS    = hello.c
TARGET  = hello

all:
	$(MAKE) -f ../Makefile SRCS='$(SRCS)' TARGET='$(TARGET)'

clean:
	rm -f *.o $(TARGET) *.gif *~


