mirror of
https://github.com/aantron/better-enums.git
synced 2025-12-08 01:36:44 +08:00
14 lines
192 B
Makefile
14 lines
192 B
Makefile
.PHONY : default
|
|
default :
|
|
make -C ../doc examples
|
|
python test.py
|
|
|
|
.PHONY : platform
|
|
platform :
|
|
make -C ../doc examples
|
|
python test.py --all
|
|
|
|
.PHONY : clean
|
|
clean :
|
|
rm -rf platform *.obj
|