aboutsummaryrefslogtreecommitdiff
path: root/makefile.unix.wx2.8
diff options
context:
space:
mode:
Diffstat (limited to 'makefile.unix.wx2.8')
-rw-r--r--makefile.unix.wx2.888
1 files changed, 0 insertions, 88 deletions
diff --git a/makefile.unix.wx2.8 b/makefile.unix.wx2.8
deleted file mode 100644
index 38d9bc0e90..0000000000
--- a/makefile.unix.wx2.8
+++ /dev/null
@@ -1,88 +0,0 @@
-# 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.
-
-
-ifneq "$(BUILD)" "debug"
-ifneq "$(BUILD)" "release"
-BUILD=debug
-endif
-endif
-ifeq "$(BUILD)" "debug"
-D=d
-DEBUGFLAGS=-g -D__WXDEBUG__
-endif
-
-
-
-INCLUDEPATHS= \
- -I"/usr/include" \
- -I"/usr/local/include/wx-2.8" \
- -I"/usr/local/lib/wx/include/gtk2-ansi-debug-static-2.8"
-
-LIBPATHS= \
- -L"/usr/lib" \
- -L"/usr/local/lib"
-
-LIBS= \
- -Wl,-Bstatic \
- -l boost_system -l boost_filesystem \
- -l db_cxx \
- -l wx_gtk2$(D)-2.8 \
- -Wl,-Bdynamic \
- -l crypto \
- -l gtk-x11-2.0 -l gthread-2.0 -l SM
-
-WXDEFS=-D__WXGTK__ -DNOPCH
-CFLAGS=-O0 -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
-
-
-
-all: bitcoin
-
-
-headers.h.gch: headers.h $(HEADERS)
- g++ -c $(CFLAGS) -o $@ $<
-
-obj/util.o: util.cpp $(HEADERS)
- g++ -c $(CFLAGS) -o $@ $<
-
-obj/script.o: script.cpp $(HEADERS)
- g++ -c $(CFLAGS) -o $@ $<
-
-obj/db.o: db.cpp $(HEADERS)
- g++ -c $(CFLAGS) -o $@ $<
-
-obj/net.o: net.cpp $(HEADERS)
- g++ -c $(CFLAGS) -o $@ $<
-
-obj/main.o: main.cpp $(HEADERS) sha.h
- g++ -c $(CFLAGS) -o $@ $<
-
-obj/ui.o: ui.cpp $(HEADERS)
- g++ -c $(CFLAGS) -o $@ $<
-
-obj/uibase.o: uibase.cpp uibase.h
- g++ -c $(CFLAGS) -o $@ $<
-
-obj/sha.o: sha.cpp sha.h
- g++ -c $(CFLAGS) -O3 -o $@ $<
-
-obj/irc.o: irc.cpp $(HEADERS)
- g++ -c $(CFLAGS) -o $@ $<
-
-obj/rpc.o: rpc.cpp $(HEADERS)
- g++ -c $(CFLAGS) -o $@ $<
-
-
-
-OBJS=obj/util.o obj/script.o obj/db.o obj/net.o obj/main.o \
- obj/ui.o obj/uibase.o obj/sha.o obj/irc.o obj/rpc.o
-
-bitcoin: headers.h.gch $(OBJS)
- g++ $(CFLAGS) -o $@ $(LIBPATHS) $(OBJS) $(LIBS)
-
-clean:
- -rm obj/*
- -rm headers.h.gch