Browse Source

Update gitignore and Makefiles for build.h move from src/ to src/obj

0.8
Gavin Andresen 12 years ago
parent
commit
f2b066da70
  1. 1
      .gitignore
  2. 2
      src/makefile.linux-mingw
  3. 1
      src/makefile.mingw
  4. 2
      src/makefile.osx
  5. 2
      src/makefile.unix

1
.gitignore vendored

@ -2,7 +2,6 @@ src/*.exe
src/bitcoin src/bitcoin
src/bitcoind src/bitcoind
src/test_bitcoin src/test_bitcoin
src/build.h
.*.swp .*.swp
*.*~* *.*~*
*.bak *.bak

2
src/makefile.linux-mingw

@ -111,6 +111,6 @@ clean:
-rm -f bitcoind.exe -rm -f bitcoind.exe
-rm -f obj-test/*.o -rm -f obj-test/*.o
-rm -f test_bitcoin.exe -rm -f test_bitcoin.exe
-rm -f src/build.h -rm -f obj/build.h
FORCE: FORCE:

1
src/makefile.mingw

@ -104,6 +104,5 @@ clean:
-del /Q bitcoind test_bitcoin -del /Q bitcoind test_bitcoin
-del /Q obj\* -del /Q obj\*
-del /Q obj-test\* -del /Q obj-test\*
-del /Q build.h
FORCE: FORCE:

2
src/makefile.osx vendored

@ -156,6 +156,6 @@ clean:
-rm -f obj-test/*.o -rm -f obj-test/*.o
-rm -f obj/*.P -rm -f obj/*.P
-rm -f obj-test/*.P -rm -f obj-test/*.P
-rm -f src/build.h -rm -f obj/build.h
FORCE: FORCE:

2
src/makefile.unix

@ -172,6 +172,6 @@ clean:
-rm -f obj-test/*.o -rm -f obj-test/*.o
-rm -f obj/*.P -rm -f obj/*.P
-rm -f obj-test/*.P -rm -f obj-test/*.P
-rm -f src/build.h -rm -f obj/build.h
FORCE: FORCE:

Loading…
Cancel
Save