mesa/src/glsl/Makefile
michal 068596c9a7 Build mesa glsl with make.
Still don't know how to add glsl to mesa dependencies.
2009-12-10 01:03:15 +01:00

15 lines
224 B
Makefile

# src/glsl/Makefile
TOP = ../..
include $(TOP)/configs/current
SUBDIRS = pp cl apps
default install clean:
@for dir in $(SUBDIRS) ; do \
if [ -d $$dir ] ; then \
(cd $$dir && $(MAKE) $@) || exit 1; \
fi \
done