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
cuiyiming-mesa-flexible-logger/sample/Makefile
2018-08-12 19:11:04 +08:00

20 lines
246 B
Makefile

#opt: OPTFLAGS = -O2
#export OPTFLAGS
.PHONY: all clean opt
all:
cd new && $(MAKE)
cd old && $(MAKE)
install:
cd new && $(MAKE) install
cd old && $(MAKE) install
clean:
cd new && $(MAKE) clean
cd old && $(MAKE) clean
opt:
$(MAKE) all