From d8b93a526b42e568a10aec07a155e2ae66735c4f Mon Sep 17 00:00:00 2001 From: ishmal Date: Thu, 2 Mar 2006 18:27:06 +0000 Subject: [PATCH] Add stuff to separate .exe and debug info --- src/Makefile.mingw | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Makefile.mingw b/src/Makefile.mingw index b3afb5cfe..e3cdb7849 100644 --- a/src/Makefile.mingw +++ b/src/Makefile.mingw @@ -50,7 +50,8 @@ RES=inkres.o inkscape.exe: libinkscape.a main.o winmain.o $(RES) $(CXX) --export-dynamic -o inkscape.exe main.o winmain.o $(RES) libinkscape.a $(LIBS) -# strip inkscape.exe + $(OBJCOPY) --only-keep-debug inkscape.exe inkscape.dbg + strip inkscape.exe # DLL version. we need to make this work #inkscape.exe: inkscape.dll main.o winmain.o $(RES) @@ -59,7 +60,8 @@ inkscape.exe: libinkscape.a main.o winmain.o $(RES) inkview.exe: libinkscape.a inkview.o $(RES) $(CXX) -o inkview.exe inkview.o $(RES) libinkscape.a $(LIBS) -# strip inkview.exe + $(OBJCOPY) --only-keep-debug inkview.exe inkview.dbg + strip inkview.exe # DLL version. we need to make this work # inkview.exe: inkscape.dll inkview.o $(RES) -- 2.30.2