~ubuntu-branches/ubuntu/precise/libglade2/precise-proposed

« back to all changes in this revision

Viewing changes to makefile.mingw

  • Committer: Bazaar Package Importer
  • Author(s): Christian Marillat
  • Date: 2002-03-30 22:55:37 UTC
  • Revision ID: james.westby@ubuntu.com-20020330225537-jx47zcil1ybgy9qx
Tags: upstream-1.99.10
ImportĀ upstreamĀ versionĀ 1.99.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Makefile for building the glade DLL with gcc -mno-cygwin for mingw.
 
2
## Use: make -f makefile.mingw
 
3
 
 
4
TOP = ..
 
5
include $(TOP)/win32build/make.mingw
 
6
 
 
7
CFLAGS = $(OPTIMIZE) -DHAVE_CONFIG_H -I . -I $(INTL) -I $(GLIB) -I $(GLIB)/gmodule -I $(GTK)/gdk -I $(GTK) -I $(LIBXML)
 
8
 
 
9
all : \
 
10
        config.h \
 
11
        test-libglade.exe
 
12
        
 
13
config.h : config.h.win32
 
14
        cp $< $@
 
15
 
 
16
test-libglade.exe : test-libglade.o
 
17
        $(CC) -o $@ $< -L glade -lglade-$(LIBGLADE_VER) -L $(GTK)/gtk -lgtk-$(GTK_VER) -L $(GLIB) -lglib-$(GLIB_VER)
 
18