2002-07-05 Rachel Hestilow <hestilow@ximian.com>
* glue/Makefile.am: Make this work cleanly, with all automake. svn path=/trunk/gtk-sharp/; revision=5613
This commit is contained in:
parent
9693ee998e
commit
add44c6965
2 changed files with 18 additions and 5 deletions
|
@ -1,3 +1,7 @@
|
|||
2002-07-05 Rachel Hestilow <hestilow@ximian.com>
|
||||
|
||||
* glue/Makefile.am: Make this work cleanly, with all automake.
|
||||
|
||||
2002-07-05 Rachel Hestilow <hestilow@ximian.com>
|
||||
|
||||
* configure.in: Conditionally compile Gnome.
|
||||
|
|
|
@ -1,18 +1,27 @@
|
|||
lib_LTLIBRARIES = libgtksharpglue.la
|
||||
|
||||
INCLUDES = @BASE_DEPENDENCIES_CFLAGS@ -I$(top_srcdir)
|
||||
|
||||
|
||||
libgtksharpglue_la_SOURCES = \
|
||||
BASE_SOURCES = \
|
||||
value.c \
|
||||
textiter.c \
|
||||
fileselection.c \
|
||||
error.c \
|
||||
event.c \
|
||||
slist.c \
|
||||
@ENABLE_GNOME_TRUE@ program.c \
|
||||
#
|
||||
|
||||
if ENABLE_GNOME
|
||||
libgtksharpglue_la_SOURCES = \
|
||||
$(BASE_SOURCES) \
|
||||
program.c \
|
||||
#
|
||||
else
|
||||
libgtksharpglue_la_SOURCES = \
|
||||
$(BASE_SOURCES)
|
||||
endif
|
||||
|
||||
INCLUDES = @BASE_DEPENDENCIES_CFLAGS@ -I$(top_srcdir)
|
||||
|
||||
|
||||
libgtksharpglue.dll: $(libgtksharpglue_la_OBJECTS) libgtksharpglue.rc libgtksharpglue.def
|
||||
./build-dll libgtksharpglue 0.1
|
||||
|
||||
|
|
Loading…
Reference in a new issue