mirror of
https://github.com/boostorg/python.git
synced 2026-01-24 06:02:14 +00:00
16 lines
218 B
Makefile
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 ..
|