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

15 lines
186 B
Makefile
Raw Permalink Normal View History

2018-11-15 17:10:05 +08:00
#opt: OPTFLAGS = -O2
#export OPTFLAGS
.PHONY: all clean opt
all:
cd src && $(MAKE)
cd demo && $(MAKE)
2018-11-15 17:10:05 +08:00
clean:
2018-11-20 10:49:16 +08:00
#cd demo && $(MAKE) clean
2018-11-15 17:10:05 +08:00
cd src && $(MAKE) clean
opt:
$(MAKE) all