mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
Add module-test rules.
2001-03-29 Tor Lillqvist <tml@iki.fi> * tests/makefile.msc.in: Add module-test rules.
This commit is contained in:
parent
93fce34a18
commit
5eef94c8b7
@ -1,7 +1,8 @@
|
||||
2001-03-29 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib.def: Updates.
|
||||
* tests/makefile.mingw.in: Add module-test rules.
|
||||
* tests/makefile.mingw.in
|
||||
* tests/makefile.msc.in: Add module-test rules.
|
||||
|
||||
Mon Mar 26 14:14:53 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
|
@ -1,7 +1,8 @@
|
||||
2001-03-29 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib.def: Updates.
|
||||
* tests/makefile.mingw.in: Add module-test rules.
|
||||
* tests/makefile.mingw.in
|
||||
* tests/makefile.msc.in: Add module-test rules.
|
||||
|
||||
Mon Mar 26 14:14:53 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
|
@ -1,7 +1,8 @@
|
||||
2001-03-29 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib.def: Updates.
|
||||
* tests/makefile.mingw.in: Add module-test rules.
|
||||
* tests/makefile.mingw.in
|
||||
* tests/makefile.msc.in: Add module-test rules.
|
||||
|
||||
Mon Mar 26 14:14:53 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
|
@ -1,7 +1,8 @@
|
||||
2001-03-29 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib.def: Updates.
|
||||
* tests/makefile.mingw.in: Add module-test rules.
|
||||
* tests/makefile.mingw.in
|
||||
* tests/makefile.msc.in: Add module-test rules.
|
||||
|
||||
Mon Mar 26 14:14:53 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
|
@ -1,7 +1,8 @@
|
||||
2001-03-29 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib.def: Updates.
|
||||
* tests/makefile.mingw.in: Add module-test rules.
|
||||
* tests/makefile.mingw.in
|
||||
* tests/makefile.msc.in: Add module-test rules.
|
||||
|
||||
Mon Mar 26 14:14:53 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
|
@ -1,7 +1,8 @@
|
||||
2001-03-29 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib.def: Updates.
|
||||
* tests/makefile.mingw.in: Add module-test rules.
|
||||
* tests/makefile.mingw.in
|
||||
* tests/makefile.msc.in: Add module-test rules.
|
||||
|
||||
Mon Mar 26 14:14:53 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
|
@ -1,7 +1,8 @@
|
||||
2001-03-29 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib.def: Updates.
|
||||
* tests/makefile.mingw.in: Add module-test rules.
|
||||
* tests/makefile.mingw.in
|
||||
* tests/makefile.msc.in: Add module-test rules.
|
||||
|
||||
Mon Mar 26 14:14:53 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
|
@ -1,7 +1,8 @@
|
||||
2001-03-29 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib.def: Updates.
|
||||
* tests/makefile.mingw.in: Add module-test rules.
|
||||
* tests/makefile.mingw.in
|
||||
* tests/makefile.msc.in: Add module-test rules.
|
||||
|
||||
Mon Mar 26 14:14:53 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
|
@ -12,7 +12,7 @@ GLIB_VER = @GLIB_MAJOR_VERSION@.@GLIB_MINOR_VERSION@
|
||||
|
||||
# Nothing much configurable below
|
||||
|
||||
INCLUDES = -I..
|
||||
INCLUDES = -I .. -I ../gmodule
|
||||
DEFINES = -DHAVE_CONFIG_H
|
||||
|
||||
TESTS = \
|
||||
@ -24,6 +24,7 @@ TESTS = \
|
||||
list-test.exe \
|
||||
mainloop-test.exe\
|
||||
markup-test.exe \
|
||||
module-test.exe \
|
||||
node-test.exe \
|
||||
queue-test.exe \
|
||||
rand-test.exe \
|
||||
@ -38,7 +39,9 @@ TESTS = \
|
||||
threadpool-test.exe\
|
||||
tree-test.exe \
|
||||
type-test.exe \
|
||||
unicode-encoding.exe
|
||||
unicode-encoding.exe \
|
||||
libmoduletestplugin_a.dll \
|
||||
libmoduletestplugin_b.dll
|
||||
|
||||
all : $(TESTS)
|
||||
|
||||
@ -50,5 +53,11 @@ makefile.msc: makefile.msc.in
|
||||
$(CC) $(CFLAGS) -c $<
|
||||
$(CC) $(CFLAGS) -Fe$@ $< ..\glib-$(GLIB_VER).lib ..\gmodule\gmodule-$(GLIB_VER).lib ..\gthread\gthread-$(GLIB_VER).lib $(LDFLAGS) /subsystem:console
|
||||
|
||||
libmoduletestplugin_a.dll : libmoduletestplugin_a.obj
|
||||
$(CC) $(CFLAGS) -LD libmoduletestplugin_a.obj ..\gmodule\gmodule-$(GLIB_VER).lib ..\glib-$(GLIB_VER).lib $(LDFLAGS)
|
||||
|
||||
libmoduletestplugin_b.dll : libmoduletestplugin_b.obj
|
||||
$(CC) $(CFLAGS) -LD libmoduletestplugin_b.obj ..\gmodule\gmodule-$(GLIB_VER).lib ..\glib-$(GLIB_VER).lib $(LDFLAGS)
|
||||
|
||||
check: all
|
||||
for %p in ($(TESTS)) do %p
|
||||
|
Loading…
Reference in New Issue
Block a user