All pastes #1903489 Raw Edit

Someone

public text v1 · immutable
#1903489 ·published 2010-07-19 08:23 UTC
rendered paste body
--- makefile.unix	2010-07-19 00:55:13.421417477 -0500
+++ makefile.gentoo	2010-07-19 00:43:07.871416685 -0500
@@ -1,73 +1,71 @@
-# Copyright (c) 2009-2010 Satoshi Nakamoto

-# Distributed under the MIT/X11 software license, see the accompanying

-# file license.txt or http://www.opensource.org/licenses/mit-license.php.

-

-

-

-INCLUDEPATHS= \

- -I"/usr/include" \

- -I"/usr/local/include/wx-2.9" \

- -I"/usr/local/lib/wx/include/gtk2-unicode-debug-static-2.9"

-

-LIBPATHS= \

- -L"/usr/lib" \

- -L"/usr/local/lib"

-

-WXLIBS= \

- -Wl,-Bstatic \

-   -l wx_gtk2ud-2.9 \

- -Wl,-Bdynamic \

-   -l gtk-x11-2.0 -l SM

-

-LIBS= \

- -Wl,-Bstatic \

-   -l boost_system -l boost_filesystem \

-   -l db_cxx \

-   -l crypto \

- -Wl,-Bdynamic \

-   -l gthread-2.0

-

-WXDEFS=-D__WXGTK__ -DNOPCH

-DEBUGFLAGS=-g -D__WXDEBUG__

-CFLAGS=-O2 -Wno-invalid-offsetof -Wformat $(DEBUGFLAGS) $(WXDEFS) $(INCLUDEPATHS)

-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 main.h rpc.h uibase.h ui.h init.h sha.h

-

-

-all: bitcoin

-

-

-headers.h.gch: headers.h $(HEADERS)

-	g++ -c $(CFLAGS) -o $@ $<

-

-obj/%.o: %.cpp $(HEADERS) headers.h.gch

-	g++ -c $(CFLAGS) -o $@ $<

-

-obj/sha.o: sha.cpp sha.h

-	g++ -c $(CFLAGS) -O3 -o $@ $<

-

-OBJS= \

-    obj/util.o \

-    obj/script.o \

-    obj/db.o \

-    obj/net.o \

-    obj/irc.o \

-    obj/main.o \

-    obj/rpc.o \

-    obj/init.o

-

-bitcoin: $(OBJS) obj/ui.o obj/uibase.o obj/sha.o

-	g++ $(CFLAGS) -o $@ $(LIBPATHS) $^ $(WXLIBS) $(LIBS)

-

-

-obj/nogui/%.o: %.cpp $(HEADERS)

-	g++ -c $(CFLAGS) -DwxUSE_GUI=0 -o $@ $<

-

-bitcoind: $(OBJS:obj/%=obj/nogui/%) obj/sha.o

-	g++ $(CFLAGS) -o $@ $(LIBPATHS) $^ -l wx_baseud-2.9 $(LIBS)

-

-

-clean:

-	-rm -f obj/*.o

-	-rm -f obj/nogui/*.o

-	-rm -f headers.h.gch

+# Copyright (c) 2009-2010 Satoshi Nakamoto
+# Distributed under the MIT/X11 software license, see the accompanying
+# file license.txt or http://www.opensource.org/licenses/mit-license.php.
+
+
+
+INCLUDEPATHS= \
+ -I"/usr/include" \
+ -I"/usr/include/wx-2.9" \
+ -I"/usr/lib/wx/include/gtk2-unicode-2.9" \
+ -I"/usr/include/db4.8"
+
+LIBPATHS= \
+ -L"/usr/lib" \
+ -L"/usr/local/lib"
+
+WXLIBS=$(shell $(shell which wx-config) --libs)
+WXBASELIBS=$(shell $(shell which wx-config) --libs base)
+
+LIBS= \
+ -Wl,-Bstatic \
+   -l boost_system -l boost_filesystem \
+   -l db_cxx \
+   -l crypto \
+ -Wl,-Bdynamic \
+   -l gthread-2.0
+
+WXDEFS=$(shell $(shell which wx-config) --cxxflags) -DNOPCH
+DEBUGFLAGS=-g -DwxDEBUG_LEVEL=0
+CFLAGS=-O2 -Wno-invalid-offsetof -Wformat $(DEBUGFLAGS) $(WXDEFS) $(INCLUDEPATHS)
+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 main.h rpc.h uibase.h ui.h init.h sha.h
+
+
+all: bitcoin
+
+
+headers.h.gch: headers.h $(HEADERS)
+	g++ -c $(CFLAGS) -o $@ $<
+
+obj/%.o: %.cpp $(HEADERS) headers.h.gch
+	g++ -c $(CFLAGS) -o $@ $<
+
+obj/sha.o: sha.cpp sha.h
+	g++ -c $(CFLAGS) -O3 -o $@ $<
+
+OBJS= \
+    obj/util.o \
+    obj/script.o \
+    obj/db.o \
+    obj/net.o \
+    obj/irc.o \
+    obj/main.o \
+    obj/rpc.o \
+    obj/init.o
+
+bitcoin: $(OBJS) obj/ui.o obj/uibase.o obj/sha.o
+	g++ $(CFLAGS) -o $@ $(LIBPATHS) $^ $(WXLIBS) $(LIBS)
+
+
+obj/nogui/%.o: %.cpp $(HEADERS)
+	g++ -c $(CFLAGS) -DwxUSE_GUI=0 -o $@ $<
+
+bitcoind: $(OBJS:obj/%=obj/nogui/%) obj/sha.o
+	g++ $(CFLAGS) -o $@ $(LIBPATHS) $^ $(WXBASELIBS) $(LIBS)
+
+
+clean:
+	-rm -f obj/*.o
+	-rm -f obj/nogui/*.o
+	-rm -f headers.h.gch