diff options
| author | Giel van Schijndel <[email protected]> | 2011-08-11 17:19:36 +0200 |
|---|---|---|
| committer | Giel van Schijndel <[email protected]> | 2011-08-19 07:24:37 +0200 |
| commit | e49b83bb1242b37717e5cfabc344b0ff7157484e (patch) | |
| tree | acbbb338c29b84ed4ca2c2f973342195ad799219 /src/makefile.unix | |
| parent | Make some global variables less-global (static) (diff) | |
| download | discoin-e49b83bb1242b37717e5cfabc344b0ff7157484e.tar.xz discoin-e49b83bb1242b37717e5cfabc344b0ff7157484e.zip | |
Cleanup makefiles such that diffs to them are smaller
Signed-off-by: Giel van Schijndel <[email protected]>
Diffstat (limited to 'src/makefile.unix')
| -rw-r--r-- | src/makefile.unix | 37 |
1 files changed, 28 insertions, 9 deletions
diff --git a/src/makefile.unix b/src/makefile.unix index 4c9279729..7cc72e0ea 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -38,22 +38,41 @@ LIBS+= \ DEBUGFLAGS=-g -D__WXDEBUG__ CXXFLAGS=-O2 -Wno-invalid-offsetof -Wformat $(DEBUGFLAGS) $(DEFS) -HEADERS=headers.h strlcpy.h serialize.h uint256.h util.h key.h bignum.h base58.h \ - script.h db.h net.h irc.h keystore.h main.h wallet.h rpc.h uibase.h ui.h noui.h \ - init.h crypter.h +HEADERS = \ + base58.h \ + bignum.h \ + crypter.h \ + db.h \ + headers.h \ + init.h \ + irc.h \ + key.h \ + keystore.h \ + main.h \ + net.h \ + noui.h \ + rpc.h \ + script.h \ + serialize.h \ + strlcpy.h \ + ui.h \ + uibase.h \ + uint256.h \ + util.h \ + wallet.h OBJS= \ - obj/util.o \ - obj/script.o \ + obj/crypter.o \ obj/db.o \ - obj/net.o \ + obj/init.o \ obj/irc.o \ obj/keystore.o \ obj/main.o \ - obj/wallet.o \ + obj/net.o \ obj/rpc.o \ - obj/init.o \ - obj/crypter.o \ + obj/script.o \ + obj/util.o \ + obj/wallet.o \ cryptopp/obj/sha.o \ cryptopp/obj/cpu.o |