diff options
| author | Bob Jamison <ishmalius@gmail.com> | 2006-03-02 18:27:06 +0000 |
|---|---|---|
| committer | ishmal <ishmal@users.sourceforge.net> | 2006-03-02 18:27:06 +0000 |
| commit | 501bd7175529efb196ebf448e29e921da239320c (patch) | |
| tree | cfd71839995bc0a9762967b43a95c1dca3ffc2d6 /src | |
| parent | Add stuff to separate .exe and debug info (diff) | |
| download | inkscape-501bd7175529efb196ebf448e29e921da239320c.tar.gz inkscape-501bd7175529efb196ebf448e29e921da239320c.zip | |
Add stuff to separate .exe and debug info
(bzr r196)
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.mingw | 6 |
1 files 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) |
