mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-16 09:48:16 +02:00
and execute fragment programs. Very limited and experimental, but works well enough to run arbfplight.c. http://fabrice.bellard.free.fr/tcc/ Compile with 'make linux-tcc', being sure to make clean first.
23 lines
343 B
Makefile
23 lines
343 B
Makefile
# progs/Makefile
|
|
|
|
TOP = ..
|
|
|
|
include $(TOP)/configs/current
|
|
|
|
SUBDIRS = $(PROGRAM_DIRS)
|
|
|
|
|
|
default: $(TOP)/configs/current
|
|
@for dir in $(SUBDIRS) ; do \
|
|
if [ -d $$dir ] ; then \
|
|
(cd $$dir ; make) || exit 1 ; \
|
|
fi \
|
|
done
|
|
|
|
|
|
clean:
|
|
@for dir in $(SUBDIRS) tests ; do \
|
|
if [ -d $$dir ] ; then \
|
|
(cd $$dir ; make clean) ; \
|
|
fi \
|
|
done
|