Revision 18159,
689 bytes
checked in by ghudson, 22 years ago
(diff) |
This commit was generated by cvs2svn to compensate for changes in r18158,
which included commits to RCS files with non-trunk default branches.
|
Line | |
---|
1 | ## Makefile for building the gmodule dll with Microsoft C |
---|
2 | ## Use: nmake -f makefile.msc install |
---|
3 | |
---|
4 | TOP = ..\.. |
---|
5 | |
---|
6 | !INCLUDE ..\build\win32\make.msc |
---|
7 | |
---|
8 | ################################################################ |
---|
9 | |
---|
10 | INCLUDES = -FImsvc_recommended_pragmas.h -I .. -I . -I ..\glib |
---|
11 | DEFINES = -DHAVE_CONFIG_H -DG_LOG_DOMAIN=\"GModule\" |
---|
12 | |
---|
13 | all : \ |
---|
14 | gmoduleconf.h \ |
---|
15 | libgmodule-2.0-0.dll |
---|
16 | |
---|
17 | gmodule_OBJECTS = \ |
---|
18 | gmodule.obj |
---|
19 | |
---|
20 | gmoduleconf.h: gmoduleconf.h.win32 |
---|
21 | copy gmoduleconf.h.win32 gmoduleconf.h |
---|
22 | |
---|
23 | libgmodule-2.0-0.dll : $(gmodule_OBJECTS) gmodule.def |
---|
24 | $(CC) $(CFLAGS) -LD -Fe$@ $(gmodule_OBJECTS) \ |
---|
25 | ..\glib\glib-2.0.lib $(LDFLAGS) /implib:gmodule-2.0.lib /def:gmodule.def |
---|
26 | |
---|
27 | clean:: |
---|
28 | del gmoduleconf.h |
---|
Note: See
TracBrowser
for help on using the repository browser.