summaryrefslogtreecommitdiff
path: root/core/Makefile
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss123next@list.ru>2010-10-13 00:17:40 +0300
committerGluzskiy Alexandr <sss123next@list.ru>2010-10-13 00:17:40 +0300
commit42992bc2c04dcfd322ead3fda1134439a2cfcf3a (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /core/Makefile
parent599d73442416d9bad663e4d0900265e073946600 (diff)
cleanup, switching to wxwidgets as main development framework
Diffstat (limited to 'core/Makefile')
-rw-r--r--core/Makefile20
1 files changed, 0 insertions, 20 deletions
diff --git a/core/Makefile b/core/Makefile
deleted file mode 100644
index 1613c29..0000000
--- a/core/Makefile
+++ /dev/null
@@ -1,20 +0,0 @@
-CFLAGS=-g -mwindows -mwin32 -D DEBUG -I../api/
-LDFLAGS=-static-libgcc -Wl,--subsystem=windows
-CXXFLAGS=${CFLAGS}
-CPPFLAGS =
-CC=i686-pc-mingw32-gcc
-CXX=i686-pc-mingw32-g++
-STRIP=i686-pc-mingw32-strip
-LD=i686-pc-mingw32-ld
-LNK_COMMON=-lkernel32
-MAINOBJS=main.o
-
-all: main
-main: $(MAINOBJS)
- $(CXX) $(MAINOBJS) $(LNK_COMMON) $(LDFLAGS) -o core.exe
- #$(STRIP) core.exe
- #upx -9 core.exe
-clean:
- rm *.o
- rm core.exe
-