SRCS    = clip.c
TARGET  = clip

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

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


