mirror of https://github.com/GNOME/gimp.git
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
|
TOP = ..
|
||
|
PRJ_TOP = .
|
||
|
PACKAGE = gimp
|
||
|
PKG_VER = 1.3
|
||
|
!INCLUDE $(TOP)\build\win32\make.msc
|
||
|
|
||
|
# in required build order
|
||
|
SUBDIRS = libgimpbase libgimpcolor libgimpmath libgimpwidgets libgimp \
|
||
|
regexrepl app plug-ins modules
|
||
|
|
||
|
sub-all:
|
||
|
for %d in ($(SUBDIRS)) do nmake -nologo -f makefile.msc sub-one THIS=%d
|
||
|
|
||
|
sub-one:
|
||
|
cd $(THIS)
|
||
|
nmake -nologo -f makefile.msc
|
||
|
cd ..
|
||
|
|
||
|
all : \
|
||
|
$(PRJ_TOP)\config.h \
|
||
|
sub-all
|
||
|
|
||
|
$(PRJ_TOP)\config.h: $(PRJ_TOP)\config.h.win32
|
||
|
copy $(PRJ_TOP)\config.h.win32 $(PRJ_TOP)\config.h
|
||
|
|
||
|
RESOURCE = $(PACKAGE).res
|
||
|
|
||
|
$(PACKAGE).lib : $(OBJECTS)
|
||
|
lib /out:$(PACKAGE).lib $(OBJECTS)
|
||
|
|
||
|
$(PACKAGE)-$(PKG_VER).dll : $(PKG_LINK) $(OBJECTS) $(PACKAGE).def
|
||
|
$(CC) $(CFLAGS) -LD -Fe$(PACKAGE)-$(PKG_VER).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) \
|
||
|
user32.lib advapi32.lib shell32.lib wsock32.lib winspool.lib $(LDFLAGS) /def:$(PACKAGE).def
|
||
|
|
||
|
.c.obj :
|
||
|
$(CC) $(CFLAGS) -GD -c $(PKG_CFLAGS) $<
|