build: add stub makefiles for easier subdir builds
This commit is contained in:
parent
be4e9aeb14
commit
8b09ef7b63
3 changed files with 21 additions and 0 deletions
9
src/qt/Makefile
Normal file
9
src/qt/Makefile
Normal file
|
@ -0,0 +1,9 @@
|
|||
.PHONY: FORCE
|
||||
all: FORCE
|
||||
$(MAKE) -C .. bitcoin_qt test_bitcoin_qt
|
||||
clean: FORCE
|
||||
$(MAKE) -C .. bitcoin_qt_clean test_bitcoin_qt_clean
|
||||
check: FORCE
|
||||
$(MAKE) -C .. test_bitcoin_qt_check
|
||||
bitcoin-qt bitcoin-qt.exe: FORCE
|
||||
$(MAKE) -C .. bitcoin_qt
|
6
src/qt/test/Makefile
Normal file
6
src/qt/test/Makefile
Normal file
|
@ -0,0 +1,6 @@
|
|||
all:
|
||||
$(MAKE) -C ../../ test_bitcoin_qt
|
||||
clean:
|
||||
$(MAKE) -C ../../ test_bitcoin_qt_clean
|
||||
check:
|
||||
$(MAKE) -C ../../ test_bitcoin_qt_check
|
6
src/test/Makefile
Normal file
6
src/test/Makefile
Normal file
|
@ -0,0 +1,6 @@
|
|||
all:
|
||||
$(MAKE) -C .. bitcoin_test
|
||||
clean:
|
||||
$(MAKE) -C .. bitcoin_test_clean
|
||||
check:
|
||||
$(MAKE) -C .. bitcoin_test_check
|
Loading…
Reference in a new issue