gtkslash 0.5.3

This commit is contained in:
troyengel 2014-11-26 12:05:00 -06:00
parent ceae872428
commit 825ddf6a4f
12 changed files with 1388 additions and 0 deletions

64
Makefile.vc6 Normal file
View file

@ -0,0 +1,64 @@
########################################################
## Makefile for building gtkSlash.exe with MSVC6
## Use: nmake -f makefile.vc6 [release | debug]
## (default is release)
##
## Comments to: Troy Engel <tengel@sonic.net>
## Adjust these to your machine:
# path to <glib.h>
GLIB = ..\glib
# path to <gtk/gtk.h>
GTK = ..\gtk-plus
# paths to .lib for gtk, gdk and glib
GLIBPATHR = ..\lib_release
GLIBPATHD = ..\lib_debug
########################################################
## Nothing more to do below this line!
## Release
CCR = cl.exe /ML /O2 /D "NDEBUG"
LINKR = link.exe /incremental:no /libpath:$(GLIBPATHR)
## Debug
CCD = cl.exe /MLd /Gm /ZI /Od /D "_DEBUG" /GZ
LINKD = link.exe /incremental:yes /debug /libpath:$(GLIBPATHD)
CFLAGS = /nologo /W3 /GX /D "WIN32" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -I$(GLIB) -I$(GTK)
LFLAGS = /nologo /out:gtkslash.exe /subsystem:windows /machine:I386
LINKLIBS = kernel32.lib glib-1.1.lib gdk-1.1.lib gtk-1.1.lib
all : release
release: gtkslashr.obj rcfuncsr.obj
$(LINKR) $(LFLAGS) $(LINKLIBS) gtkslash.obj rcfuncs.obj
debug: gtkslashd.obj rcfuncsd.obj
$(LINKD) $(LFLAGS) $(LINKLIBS) gtkslash.obj rcfuncs.obj
gtkslashr.obj : gtkslash.c
$(CCR) $(CFLAGS) gtkslash.c
gtkslashd.obj : gtkslash.c
$(CCD) $(CFLAGS) gtkslash.c
rcfuncsr.obj : rcfuncs.c
$(CCR) $(CFLAGS) rcfuncs.c
rcfuncsd.obj : rcfuncs.c
$(CCD) $(CFLAGS) rcfuncs.c
clean:
del gtkslash.exe
del gtkslash.obj
del rcfuncs.obj
del gtkslash.pdb
del gtkslash.ilk
del vc60.idb
del vc60.pdb
del vc60.pch