2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-24 06:02:14 +00:00
Files
python/libs/python/Makefile
2000-11-30 16:45:18 +00:00

16 lines
218 B
Makefile

all: lib test
lib::
@cd src ; $(MAKE) lib ; cd ..
test::
@cd test ; $(MAKE) test ; cd ..
install: all
@cd src ; $(MAKE) install ; cd ..
clean:
@cd src ; $(MAKE) clean ; cd ..
@cd test ; $(MAKE) clean ; cd ..