vcglib/apps/gcc_make/Makefile-cygwin

16 lines
179 B
Plaintext

ADIRS=./*
MAKE = make
app:
@for DIRS in apps/$(ADIRS);do \
(cd $${DIRS}; $(MAKE) app ) \
done\
clean:
@for DIRS in apps/$(ADIRS);do \
(cd $${DIRS}; rm *.o ) \
done\