diff options
| author | Cory Fields <[email protected]> | 2014-05-28 13:41:35 -0400 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2014-06-05 16:05:43 -0400 |
| commit | 8b09ef7b6370800a1a9fd6f067abf1aaab5d6cfa (patch) | |
| tree | a0909172988a45853287a3bb1fd2b26cd84e412f /src | |
| parent | build: delete old Makefile.am's (diff) | |
| download | discoin-8b09ef7b6370800a1a9fd6f067abf1aaab5d6cfa.tar.xz discoin-8b09ef7b6370800a1a9fd6f067abf1aaab5d6cfa.zip | |
build: add stub makefiles for easier subdir builds
Diffstat (limited to 'src')
| -rw-r--r-- | src/qt/Makefile | 9 | ||||
| -rw-r--r-- | src/qt/test/Makefile | 6 | ||||
| -rw-r--r-- | src/test/Makefile | 6 |
3 files changed, 21 insertions, 0 deletions
diff --git a/src/qt/Makefile b/src/qt/Makefile new file mode 100644 index 000000000..b9dcf0c59 --- /dev/null +++ b/src/qt/Makefile @@ -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 diff --git a/src/qt/test/Makefile b/src/qt/test/Makefile new file mode 100644 index 000000000..a02f86b62 --- /dev/null +++ b/src/qt/test/Makefile @@ -0,0 +1,6 @@ +all: + $(MAKE) -C ../../ test_bitcoin_qt +clean: + $(MAKE) -C ../../ test_bitcoin_qt_clean +check: + $(MAKE) -C ../../ test_bitcoin_qt_check diff --git a/src/test/Makefile b/src/test/Makefile new file mode 100644 index 000000000..87bf73fec --- /dev/null +++ b/src/test/Makefile @@ -0,0 +1,6 @@ +all: + $(MAKE) -C .. bitcoin_test +clean: + $(MAKE) -C .. bitcoin_test_clean +check: + $(MAKE) -C .. bitcoin_test_check |