mirror of
https://github.com/aantron/better-enums.git
synced 2025-12-11 22:19:51 +08:00
16 lines
233 B
Makefile
16 lines
233 B
Makefile
.PHONY : default
|
|
default :
|
|
python test.py
|
|
|
|
.PHONY : platform
|
|
platform : examples
|
|
python test.py --all
|
|
|
|
.PHONY : examples
|
|
examples :
|
|
make -C ../doc examples
|
|
|
|
.PHONY : clean
|
|
clean :
|
|
rm -rf platform *.obj cxxtest/*.cc cxxtest/*.exe
|