This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
mesa-framework-mesa-handle-…/Makefile

15 lines
186 B
Makefile

#opt: OPTFLAGS = -O2
#export OPTFLAGS
.PHONY: all clean opt
all:
cd src && $(MAKE)
cd demo && $(MAKE)
clean:
#cd demo && $(MAKE) clean
cd src && $(MAKE) clean
opt:
$(MAKE) all