Correct URL for mingw runtime sources.
[platform/upstream/glib.git] / makefile.cygwin.in
1 ## Makefile for building the GLib, gmodule and gthread DLLs with
2 ## egcs on cygwin.
3 ## Use: make -f makefile.cygwin install
4
5 # Change this to wherever you want to install the DLLs. This directory
6 # should be in your PATH.
7 BIN = /bin
8
9 # This is the location of pthreads for Win32, 
10 # see http://sourceware.cygnus.com/pthreads-win32/
11 # We want the 1999-05-30 snapshot.
12 PTHREADS = ../pthreads-snap-1999-05-30
13 PTHREAD_LIB = -L$(PTHREADS) -lpthread32
14 PTHREAD_INC = -I $(PTHREADS)
15
16 OPTIMIZE = -g -O
17
18 ################################################################
19
20 # Nothing much configurable below
21
22 CC = gcc -mno-cygwin -mpentium
23
24 CP = cp
25 LD = ld
26 DLLTOOL = dlltool
27 INSTALL = install
28
29 GLIB_VER = @GLIB_MAJOR_VERSION@.@GLIB_MINOR_VERSION@
30
31 CFLAGS = $(OPTIMIZE) -I. -DHAVE_CONFIG_H
32
33 all : \
34         config.h        \
35         glibconfig.h    \
36         glib-$(GLIB_VER).gcc.dll \
37         gmodule/gmoduleconf.h \
38         gmodule-$(GLIB_VER).gcc.dll \
39         gthread-$(GLIB_VER).gcc.dll \
40         testglib.exe    \
41         testgmodule.exe \
42         testgdate.exe   \
43         testgdateparser.exe
44
45 install : all
46         $(INSTALL) glib-$(GLIB_VER).gcc.dll $(BIN)
47         $(INSTALL) gmodule-$(GLIB_VER).gcc.dll $(BIN)
48         $(INSTALL) gthread-$(GLIB_VER).gcc.dll $(BIN)
49
50 glib_OBJECTS = \
51         garray.o        \
52         gcache.o        \
53         gcompletion.o   \
54         gdataset.o      \
55         gdate.o         \
56         gerror.o        \
57         ghook.o         \
58         ghash.o         \
59         giochannel.o    \
60         giowin32.o      \
61         glist.o         \
62         gmain.o         \
63         gmem.o          \
64         gmessages.o     \
65         gnode.o         \
66         gprimes.o       \
67         gqueue.o        \
68         grand.o         \
69         gslist.o        \
70         gstack.o        \
71         gthread.o       \
72         gtimer.o        \
73         gtree.o         \
74         grel.o          \
75         gstring.o       \
76         gstrfuncs.o     \
77         gscanner.o      \
78         gutils.o
79
80 glib-$(GLIB_VER).gcc.dll : $(glib_OBJECTS) glib.def
81         ./build-dll glib $(GLIB_VER).gcc glib.def $(glib_OBJECTS) -luser32 -lwsock32
82
83 glibconfig.h: glibconfig.h.win32
84         $(CP) glibconfig.h.win32 glibconfig.h
85
86 config.h: config.h.win32
87         $(CP) config.h.win32 config.h
88
89 .c.o :
90         $(CC) $(CFLAGS) -c -DGLIB_COMPILATION -DG_LOG_DOMAIN=g_log_domain_glib $<
91
92 gmodule_OBJECTS = \
93         gmodule.o
94
95 gmodule-$(GLIB_VER).gcc.dll : $(gmodule_OBJECTS) gmodule/gmodule.def
96         ./build-dll gmodule $(GLIB_VER).gcc gmodule/gmodule.def $(gmodule_OBJECTS) -L. -lglib-$(GLIB_VER).gcc -lwsock32
97
98 gmodule.o : gmodule/gmodule.c gmodule/gmodule-win32.c
99         $(CC) $(CFLAGS) -Igmodule -c -DG_LOG_DOMAIN=g_log_domain_gmodule gmodule/gmodule.c
100
101 gmodule/gmoduleconf.h: gmodule/gmoduleconf.h.win32
102         $(CP) gmodule/gmoduleconf.h.win32 gmodule/gmoduleconf.h
103
104 gthread_OBJECTS = \
105         gthread-impl.o
106
107 gthread-$(GLIB_VER).gcc.dll : $(gthread_OBJECTS) glib-$(GLIB_VER).gcc.dll gthread/gthread.def
108         ./build-dll gthread $(GLIB_VER).gcc gthread/gthread.def $(gthread_OBJECTS)  -L. -lglib-$(GLIB_VER).gcc $(PTHREAD_LIB)
109
110 gthread-impl.o : gthread/gthread-impl.c gthread/gthread-posix.c
111         $(CC) $(CFLAGS) $(PTHREAD_INC) -DG_LOG_DOMAIN=\"GThread\" -c gthread/gthread-impl.c
112
113 testglib.exe : glib-$(GLIB_VER).gcc.dll testglib.o
114         $(CC) $(CFLAGS) -o testglib testglib.o -L. -lglib-$(GLIB_VER).gcc $(LDFLAGS)
115
116 testglib.o : testglib.c
117         $(CC) -c $(CFLAGS) testglib.c
118
119 testgdate.exe : glib-$(GLIB_VER).gcc.dll testgdate.o
120         $(CC) $(CFLAGS) -o testgdate.exe testgdate.o -L. -lglib-$(GLIB_VER).gcc $(LDFLAGS)
121
122 testgdate.o : testgdate.c
123         $(CC) -c $(CFLAGS) testgdate.c
124
125 testgdateparser.exe : glib-$(GLIB_VER).gcc.dll testgdateparser.o
126         $(CC) $(CFLAGS) -o testgdateparser.exe testgdateparser.o -L. -lglib-$(GLIB_VER).gcc $(LDFLAGS)
127
128 testgdateparser.o : testgdateparser.c
129         $(CC) -c $(CFLAGS) testgdateparser.c
130
131 testgmodule.exe : glib-$(GLIB_VER).gcc.dll gmodule-$(GLIB_VER).gcc.dll testgmodule.o libgplugin_a.dll libgplugin_b.dll
132 # Wow, do we really have to do it like this to get some symbols
133 # exported from a .exe? Apparently yes. Does the __declspec(dllexport) 
134 # actually do anything in egcs-1.1.2?
135         $(CC) $(CFLAGS) -Wl,--base-file,testgmodule.base -o testgmodule.exe testgmodule.o -L. -lglib-$(GLIB_VER).gcc -lgmodule-$(GLIB_VER).gcc $(LDFLAGS)
136         $(DLLTOOL) --base-file testgmodule.base --output-exp testgmodule.exp testgmodule.o
137         $(CC) $(CFLAGS) -Wl,--base-file,testgmodule.base,testgmodule.exp -o testgmodule.exe testgmodule.o -L. -lglib-$(GLIB_VER).gcc -lgmodule-$(GLIB_VER).gcc $(LDFLAGS)
138         $(DLLTOOL) --base-file testgmodule.base --output-exp testgmodule.exp testgmodule.o
139         $(CC) $(CFLAGS) -Wl,testgmodule.exp -o testgmodule.exe testgmodule.o -L. -lglib-$(GLIB_VER).gcc -lgmodule-$(GLIB_VER).gcc $(LDFLAGS)
140
141 testgmodule.o : gmodule/testgmodule.c
142         $(CC) $(CFLAGS) -Igmodule -c gmodule/testgmodule.c
143
144 libgplugin_a.dll : libgplugin_a.o
145         ./build-dll libgplugin_a - - libgplugin_a.o -L. -lglib-$(GLIB_VER).gcc -lgmodule-$(GLIB_VER).gcc
146
147 libgplugin_a.o : gmodule/libgplugin_a.c
148         $(CC) $(CFLAGS) -Igmodule -c gmodule/libgplugin_a.c
149
150 libgplugin_b.dll : libgplugin_b.o
151         ./build-dll libgplugin_b - - libgplugin_b.o -L. -lglib-$(GLIB_VER).gcc -lgmodule-$(GLIB_VER).gcc
152
153 libgplugin_b.o : gmodule/libgplugin_b.c
154         $(CC) $(CFLAGS) -Igmodule -c gmodule/libgplugin_b.c
155
156 clean:
157         -rm config.h glibconfig.h gmodule/gmoduleconf.h
158         -rm *.exe *.o *.dll *.a *.base *.exp