summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Breuer <hans@breuer.org>2007-01-13 21:29:13 +0000
committerHans Breuer <hans@src.gnome.org>2007-01-13 21:29:13 +0000
commit0703a1c4542c91fcfc37e169b0341d363ca7711e (patch)
tree8a09e82c11db09f3d3e56672d198512d0a979c1d
parent2f8a561da4380732ca695398bbb09c5bcc56ef62 (diff)
downloadatk-0703a1c4542c91fcfc37e169b0341d363ca7711e.tar.gz
adapt lib name to "auto-standard", add atkmisc
2007-01-13 Hans Breuer <hans@breuer.org> * atk/makefile.msc : adapt lib name to "auto-standard", add atkmisc svn path=/trunk/; revision=1135
-rw-r--r--ChangeLog4
-rw-r--r--atk/makefile.msc8
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index f43f570..da3fe0e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-01-13 Hans Breuer <hans@breuer.org>
+
+ * atk/makefile.msc : adapt lib name to "auto-standard", add atkmisc
+
2007-01-10 Li Yuan <li.yuan@sun.com>
* configure.in:
diff --git a/atk/makefile.msc b/atk/makefile.msc
index 49d4514..f407b7d 100644
--- a/atk/makefile.msc
+++ b/atk/makefile.msc
@@ -34,6 +34,7 @@ OBJECTS = \
atkgobjectaccessible.obj \
atkhyperlink.obj \
atkhypertext.obj \
+ atkmisc.obj \
atkimage.obj \
atknoopobject.obj \
atknoopobjectfactory.obj \
@@ -68,6 +69,7 @@ atk_headers = \
atkobject.h \
atkobjectfactory.h \
atkimage.h \
+ atkmisc.h \
atkregistry.h \
atkrelation.h \
atkrelationset.h \
@@ -88,7 +90,7 @@ GENERATED = atkmarshal.c atkmarshal.h
all : \
$(GENERATED) \
- $(PACKAGE)-$(PKG_VER).dll
+ lib$(PACKAGE)-$(PKG_VER)-0.dll
atkmarshal.h : atkmarshal.list
$(GLIB)\gobject\glib-genmarshal --prefix=atk_marshal atkmarshal.list --header >atkmarshal.h
@@ -129,8 +131,8 @@ RESOURCE = $(PACKAGE).res
$(PACKAGE).lib : $(OBJECTS)
lib /out:$(PACKAGE).lib $(OBJECTS)
-$(PACKAGE)-$(PKG_VER).dll : $(OBJECTS) $(PACKAGE).def
- $(CC) $(CFLAGS) -LD -Fe$(PACKAGE)-$(PKG_VER).dll $(OBJECTS) $(PKG_LINK) user32.lib advapi32.lib wsock32.lib $(LDFLAGS) /def:$(PACKAGE).def
+lib$(PACKAGE)-$(PKG_VER)-0.dll : $(OBJECTS) $(PACKAGE).def
+ $(CC) $(CFLAGS) -LD -Felib$(PACKAGE)-$(PKG_VER)-0.dll $(OBJECTS) $(PKG_LINK) user32.lib advapi32.lib wsock32.lib $(LDFLAGS) /def:$(PACKAGE).def
$(PACKAGE).exe : $(OBJECTS) $(PACKAGE).def $(PACKAGE).res
$(CC) $(CFLAGS) -Fe$(PACKAGE).exe $(PACKAGE).res $(OBJECTS) $(PKG_LINK) \