2011-12-13 04:02:33 +08:00
|
|
|
# @configure_input@
|
2000-02-18 03:38:33 +08:00
|
|
|
#
|
|
|
|
#
|
2011-12-13 04:02:33 +08:00
|
|
|
# Makefile.in
|
|
|
|
#
|
|
|
|
# This file is part of a free library for the Win32 API.
|
2000-02-18 03:38:33 +08:00
|
|
|
#
|
2011-12-13 04:02:33 +08:00
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2012-01-15 22:20:36 +08:00
|
|
|
SUBDIRS = ddk directx
|
|
|
|
|
2000-02-18 03:38:33 +08:00
|
|
|
srcdir = @srcdir@
|
2011-12-14 04:46:53 +08:00
|
|
|
top_srcdir = @top_srcdir@
|
|
|
|
top_builddir = @top_builddir@
|
|
|
|
|
2000-02-18 03:38:33 +08:00
|
|
|
VPATH = @srcdir@
|
|
|
|
|
2011-12-14 04:46:53 +08:00
|
|
|
include ${top_builddir}/Makefile.comm
|
|
|
|
|
|
|
|
# Headers
|
|
|
|
#
|
2012-01-15 23:31:11 +08:00
|
|
|
HEADERS = $(notdir $(wildcard ${top_srcdir}/include/*.h))
|
|
|
|
GL_HEADERS = $(notdir $(wildcard ${top_srcdir}/include/GL/*.h))
|
|
|
|
GDIPLUS_HEADERS = $(notdir $(wildcard ${top_srcdir}/include/gdiplus/*.h))
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2011-12-14 04:46:53 +08:00
|
|
|
# Libraries
|
|
|
|
#
|
2012-01-15 22:20:36 +08:00
|
|
|
DEF_FILES = $(notdir $(wildcard ${srcdir}/*.def))
|
|
|
|
MRI_FILES = $(notdir $(wildcard ${srcdir}/*.mri))
|
2000-02-18 03:38:33 +08:00
|
|
|
IMPLIBS = $(addprefix lib,$(subst .def,.a,$(DEF_FILES)))
|
2003-11-27 10:14:37 +08:00
|
|
|
MIMPLIBS = $(addprefix lib,$(subst .mri,.a,$(MRI_FILES)))
|
2011-12-14 04:46:53 +08:00
|
|
|
|
|
|
|
EXTRA_LIBS = libuuid.a libscrnsave.a libscrnsavw.a liblargeint.a
|
|
|
|
|
2003-11-27 10:14:37 +08:00
|
|
|
LIBS = $(IMPLIBS) $(MIMPLIBS) $(EXTRA_LIBS)
|
2012-01-15 22:20:36 +08:00
|
|
|
|
|
|
|
UUID_OBJS = \
|
|
|
|
mshtml-uuid.o msxml-uuid.o unknwn-uuid.o \
|
|
|
|
servprov-uuid.o oleidl-uuid.o oleacc-uuid.o ocidl-uuid.o \
|
|
|
|
objsafe-uuid.o oaidl-uuid.o docobj-uuid.o comcat-uuid.o \
|
|
|
|
exdisp-uuid.o mlang-uuid.o objidl-uuid.o cguid-uuid.o \
|
|
|
|
olectlid-uuid.o ativscp-uuid.o urlmon-uuid.o hlink-uuid.o \
|
|
|
|
hlguids-uuid.o extras-uuid.o devguid.o power-uuid.o
|
|
|
|
|
|
|
|
EXTRA_OBJS = \
|
|
|
|
shell32.o scrnsave.o scrnsavw.o largeint.o gdiplus.o \
|
|
|
|
$(UUID_OBJS) ws2_32.o
|
|
|
|
|
|
|
|
UUID_SOURCES = \
|
|
|
|
mshtml-uuid.c msxml-uuid.c unknwn-uuid.c \
|
|
|
|
servprov-uuid.c oleidl-uuid.c oleacc-uuid.c ocidl-uuid.c \
|
|
|
|
objsafe-uuid.c oaidl-uuid.c docobj-uuid.c comcat-uuid.c \
|
|
|
|
exdisp-uuid.c mlang-uuid.c objidl-uuid.c cguid-uuid.c \
|
|
|
|
olectlid-uuid.c ativscp-uuid.c urlmon-uuid.c hlink-uuid.c \
|
|
|
|
hlguids-uuid.c extras-uuid.c devguid.c power-uuid.c
|
|
|
|
|
|
|
|
SOURCES = \
|
|
|
|
scrnsave.c shell32.c largeint.c gdiplus.c $(UUID_SOURCES) \
|
|
|
|
res.rc test.c ws2_32.c
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2003-11-27 10:14:37 +08:00
|
|
|
DISTFILES = Makefile.in $(DEF_FILES) $(MRI_FILES) $(SOURCES)
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2001-11-05 04:38:00 +08:00
|
|
|
.NOTPARALLEL:
|
2012-01-15 22:20:36 +08:00
|
|
|
.PHONY: install install-libraries install-headers install-ddk
|
2012-01-16 05:30:48 +08:00
|
|
|
.PHONY: check test $(SUBDIRS)
|
2001-11-05 04:38:00 +08:00
|
|
|
|
2011-12-14 04:46:53 +08:00
|
|
|
# Targets: (note that 'all-default' is a redirection from 'all',
|
|
|
|
# which is the primary default target identified in the included
|
|
|
|
# common makefile fragment, ${top_builddir}/Makefile.comm
|
|
|
|
#
|
|
|
|
all-default: $(EXTRA_OBJS) $(LIBS) ddk directx
|
2002-10-15 03:59:04 +08:00
|
|
|
|
|
|
|
%-subdirs:
|
2012-01-15 20:39:00 +08:00
|
|
|
for dir in $(SUBDIRS); do \
|
|
|
|
$(MAKE) -C $$dir $*; \
|
2002-10-15 03:59:04 +08:00
|
|
|
done
|
|
|
|
|
|
|
|
ddk:
|
2011-12-13 04:02:33 +08:00
|
|
|
$(MAKE) -C $@
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2004-03-27 Filip Navara <xnavara@volny.cz>
* include/directx: New subdir.
* lib/directx: Ditto.
* include/directx/(d3d9.h, d3d9caps.h, d3d9types.h, dxerr8.h,
dxerr9.h): New files.
* lib/ddk/(Makefile.in, d3d8.def, d3d9.def, d3dim.def, d3drm.def,
d3dx8d.def, d3dx9d.def, d3dxof.def, ddraw.def, dinput.def,
dinput_joy.c, dinput_joy2.c, dinput_kbd.c, dinput_mouse.c,
dinput_mouse2.c, dinput_private.h, dinput8.def, dmoguids.c, dplayx.def,
dpnaddr.def, dpnet.def, dpnlobby.def, dpvoice.def, dsetup.def,
dsound.def, dxerr.c, dxerr8.c, dxerr8w.c, dxerr9.c, dxerr9w.c,
dxguid.c, ksproxy.def, ksuser.c, ksuser.def, msdmo.def, quartz.def,
strmiids.c, test.c): Ditto.
* lib/(d3dim.def, d3drm.def, d3dxof.def, ddraw.def, dinput.c,
dinput.def, dplayx.def, dsetup.def, dsound.def, dxguid.c): Removed.
2004-03-27 10:25:37 +08:00
|
|
|
directx:
|
2011-12-13 04:02:33 +08:00
|
|
|
$(MAKE) -C $@
|
2004-03-27 Filip Navara <xnavara@volny.cz>
* include/directx: New subdir.
* lib/directx: Ditto.
* include/directx/(d3d9.h, d3d9caps.h, d3d9types.h, dxerr8.h,
dxerr9.h): New files.
* lib/ddk/(Makefile.in, d3d8.def, d3d9.def, d3dim.def, d3drm.def,
d3dx8d.def, d3dx9d.def, d3dxof.def, ddraw.def, dinput.def,
dinput_joy.c, dinput_joy2.c, dinput_kbd.c, dinput_mouse.c,
dinput_mouse2.c, dinput_private.h, dinput8.def, dmoguids.c, dplayx.def,
dpnaddr.def, dpnet.def, dpnlobby.def, dpvoice.def, dsetup.def,
dsound.def, dxerr.c, dxerr8.c, dxerr8w.c, dxerr9.c, dxerr9w.c,
dxguid.c, ksproxy.def, ksuser.c, ksuser.def, msdmo.def, quartz.def,
strmiids.c, test.c): Ditto.
* lib/(d3dim.def, d3drm.def, d3dxof.def, ddraw.def, dinput.c,
dinput.def, dplayx.def, dsetup.def, dsound.def, dxguid.c): Removed.
2004-03-27 10:25:37 +08:00
|
|
|
|
2012-01-15 22:20:36 +08:00
|
|
|
TEST_OPTIONS = \
|
|
|
|
$(ALL_CFLAGS) -DWINVER=0x0666 -Wall -pedantic -Wsystem-headers \
|
|
|
|
-c ${srcdir}/test.c -o test.o
|
|
|
|
|
2012-01-16 05:30:48 +08:00
|
|
|
check test:
|
2000-02-18 03:38:33 +08:00
|
|
|
@echo "Testing w32api..."
|
|
|
|
@for lang in c c++ objective-c ; do \
|
2012-01-15 20:39:00 +08:00
|
|
|
echo "$$lang..."; \
|
|
|
|
$(CC) -x$$lang $(TEST_OPTIONS); \
|
|
|
|
echo "$$lang UNICODE..."; \
|
|
|
|
$(CC) -x$$lang -DUNICODE $(TEST_OPTIONS); \
|
2000-02-18 03:38:33 +08:00
|
|
|
done
|
|
|
|
@echo "windres..."
|
2012-01-15 20:39:00 +08:00
|
|
|
$(WINDRES) --include-dir $(INCDIR) -i ${srcdir}/res.rc -o test.o
|
2000-02-18 03:38:33 +08:00
|
|
|
@echo "windres UNICODE..."
|
2012-01-15 20:39:00 +08:00
|
|
|
$(WINDRES) --define UNICODE --include-dir $(INCDIR) -i ${srcdir}/res.rc -o test.o
|
|
|
|
rm -f test.o
|
2000-02-18 03:38:33 +08:00
|
|
|
|
|
|
|
scrnsavw.o: scrnsave.c
|
|
|
|
$(CC) -c $(ALL_CFLAGS) -DUNICODE -o $@ $<
|
|
|
|
|
2011-12-14 04:46:53 +08:00
|
|
|
# Rules
|
|
|
|
#
|
|
|
|
libuuid.a: $(UUID_OBJS)
|
2003-03-30 05:31:15 +08:00
|
|
|
$(AR) rc $@ $(UUID_OBJS)
|
|
|
|
$(RANLIB) $@
|
|
|
|
|
2003-11-27 10:14:37 +08:00
|
|
|
# libvfw32.a contains import stubs for 3 dll's. Using an MRI script
|
|
|
|
# seems to be the simplest way to combine them into one archive.
|
2011-12-14 04:46:53 +08:00
|
|
|
#
|
|
|
|
# NB: With older dlltool, the object file members will not have
|
|
|
|
# unique names.
|
|
|
|
#
|
|
|
|
libvfw32.a: vfw32.mri libmsvfw32.a libavifil32.a libavicap32.a
|
2003-11-27 10:14:37 +08:00
|
|
|
rm -f $@
|
2003-11-28 07:34:18 +08:00
|
|
|
$(AR) -M < ${word 1,$^}
|
2003-11-27 10:14:37 +08:00
|
|
|
$(RANLIB) $@
|
|
|
|
|
2011-12-14 04:46:53 +08:00
|
|
|
# Install headers and libraries in a target specified directory.
|
|
|
|
#
|
2004-03-27 Filip Navara <xnavara@volny.cz>
* include/directx: New subdir.
* lib/directx: Ditto.
* include/directx/(d3d9.h, d3d9caps.h, d3d9types.h, dxerr8.h,
dxerr9.h): New files.
* lib/ddk/(Makefile.in, d3d8.def, d3d9.def, d3dim.def, d3drm.def,
d3dx8d.def, d3dx9d.def, d3dxof.def, ddraw.def, dinput.def,
dinput_joy.c, dinput_joy2.c, dinput_kbd.c, dinput_mouse.c,
dinput_mouse2.c, dinput_private.h, dinput8.def, dmoguids.c, dplayx.def,
dpnaddr.def, dpnet.def, dpnlobby.def, dpvoice.def, dsetup.def,
dsound.def, dxerr.c, dxerr8.c, dxerr8w.c, dxerr9.c, dxerr9w.c,
dxguid.c, ksproxy.def, ksuser.c, ksuser.def, msdmo.def, quartz.def,
strmiids.c, test.c): Ditto.
* lib/(d3dim.def, d3drm.def, d3dxof.def, ddraw.def, dinput.c,
dinput.def, dplayx.def, dsetup.def, dsound.def, dxguid.c): Removed.
2004-03-27 10:25:37 +08:00
|
|
|
install: install-libraries install-headers install-ddk install-directx
|
2000-10-20 12:39:21 +08:00
|
|
|
|
2009-10-30 05:53:47 +08:00
|
|
|
install-libraries: all $(need-DESTDIR-compatibility)
|
2012-01-15 22:20:36 +08:00
|
|
|
$(mkinstalldirs) $(DESTDIR)${inst_libdir}
|
2012-01-15 20:39:00 +08:00
|
|
|
for file in $(LIBS); do \
|
2012-01-15 22:20:36 +08:00
|
|
|
$(INSTALL_DATA) $$file $(DESTDIR)${inst_libdir}; \
|
2000-10-20 12:39:21 +08:00
|
|
|
done
|
|
|
|
|
2009-10-30 05:53:47 +08:00
|
|
|
install-headers: $(need-DESTDIR-compatibility)
|
2012-01-15 22:20:36 +08:00
|
|
|
$(mkinstalldirs) $(DESTDIR)${inst_includedir}
|
2012-01-15 20:39:00 +08:00
|
|
|
for file in $(HEADERS); do \
|
2012-01-15 23:31:11 +08:00
|
|
|
$(INSTALL_DATA) ${top_srcdir}/include/$$file $(DESTDIR)${inst_includedir}; \
|
2000-10-20 12:39:21 +08:00
|
|
|
done
|
2012-01-15 22:20:36 +08:00
|
|
|
$(mkinstalldirs) $(DESTDIR)${inst_includedir}/GL
|
2012-01-15 20:39:00 +08:00
|
|
|
for file in $(GL_HEADERS); do \
|
2012-01-15 23:31:11 +08:00
|
|
|
$(INSTALL_DATA) ${top_srcdir}/include/GL/$$file $(DESTDIR)${inst_includedir}/GL; \
|
2002-05-28 21:20:28 +08:00
|
|
|
done
|
2012-01-15 22:20:36 +08:00
|
|
|
$(mkinstalldirs) $(DESTDIR)${inst_includedir}/gdiplus
|
2012-01-15 20:39:00 +08:00
|
|
|
for file in $(GDIPLUS_HEADERS); do \
|
2012-01-15 23:31:11 +08:00
|
|
|
$(INSTALL_DATA) ${top_srcdir}/include/gdiplus/$$file $(DESTDIR)${inst_includedir}/gdiplus; \
|
2010-07-09 07:14:54 +08:00
|
|
|
done
|
2000-10-20 12:39:21 +08:00
|
|
|
|
2002-10-15 03:59:04 +08:00
|
|
|
install-ddk: install-libraries install-headers
|
2011-12-13 04:02:33 +08:00
|
|
|
cd ddk && $(MAKE) install
|
2002-10-15 03:59:04 +08:00
|
|
|
|
2004-03-27 Filip Navara <xnavara@volny.cz>
* include/directx: New subdir.
* lib/directx: Ditto.
* include/directx/(d3d9.h, d3d9caps.h, d3d9types.h, dxerr8.h,
dxerr9.h): New files.
* lib/ddk/(Makefile.in, d3d8.def, d3d9.def, d3dim.def, d3drm.def,
d3dx8d.def, d3dx9d.def, d3dxof.def, ddraw.def, dinput.def,
dinput_joy.c, dinput_joy2.c, dinput_kbd.c, dinput_mouse.c,
dinput_mouse2.c, dinput_private.h, dinput8.def, dmoguids.c, dplayx.def,
dpnaddr.def, dpnet.def, dpnlobby.def, dpvoice.def, dsetup.def,
dsound.def, dxerr.c, dxerr8.c, dxerr8w.c, dxerr9.c, dxerr9w.c,
dxguid.c, ksproxy.def, ksuser.c, ksuser.def, msdmo.def, quartz.def,
strmiids.c, test.c): Ditto.
* lib/(d3dim.def, d3drm.def, d3dxof.def, ddraw.def, dinput.c,
dinput.def, dplayx.def, dsetup.def, dsound.def, dxguid.c): Removed.
2004-03-27 10:25:37 +08:00
|
|
|
install-directx: install-libraries install-headers
|
2011-12-13 04:02:33 +08:00
|
|
|
cd directx && $(MAKE) install
|
2004-03-27 Filip Navara <xnavara@volny.cz>
* include/directx: New subdir.
* lib/directx: Ditto.
* include/directx/(d3d9.h, d3d9caps.h, d3d9types.h, dxerr8.h,
dxerr9.h): New files.
* lib/ddk/(Makefile.in, d3d8.def, d3d9.def, d3dim.def, d3drm.def,
d3dx8d.def, d3dx9d.def, d3dxof.def, ddraw.def, dinput.def,
dinput_joy.c, dinput_joy2.c, dinput_kbd.c, dinput_mouse.c,
dinput_mouse2.c, dinput_private.h, dinput8.def, dmoguids.c, dplayx.def,
dpnaddr.def, dpnet.def, dpnlobby.def, dpvoice.def, dsetup.def,
dsound.def, dxerr.c, dxerr8.c, dxerr8w.c, dxerr9.c, dxerr9w.c,
dxguid.c, ksproxy.def, ksuser.c, ksuser.def, msdmo.def, quartz.def,
strmiids.c, test.c): Ditto.
* lib/(d3dim.def, d3drm.def, d3dxof.def, ddraw.def, dinput.c,
dinput.def, dplayx.def, dsetup.def, dsound.def, dxguid.c): Removed.
2004-03-27 10:25:37 +08:00
|
|
|
|
2011-12-14 04:46:53 +08:00
|
|
|
# Uninstall headers and libraries from a target specified directory
|
|
|
|
#
|
2004-03-27 Filip Navara <xnavara@volny.cz>
* include/directx: New subdir.
* lib/directx: Ditto.
* include/directx/(d3d9.h, d3d9caps.h, d3d9types.h, dxerr8.h,
dxerr9.h): New files.
* lib/ddk/(Makefile.in, d3d8.def, d3d9.def, d3dim.def, d3drm.def,
d3dx8d.def, d3dx9d.def, d3dxof.def, ddraw.def, dinput.def,
dinput_joy.c, dinput_joy2.c, dinput_kbd.c, dinput_mouse.c,
dinput_mouse2.c, dinput_private.h, dinput8.def, dmoguids.c, dplayx.def,
dpnaddr.def, dpnet.def, dpnlobby.def, dpvoice.def, dsetup.def,
dsound.def, dxerr.c, dxerr8.c, dxerr8w.c, dxerr9.c, dxerr9w.c,
dxguid.c, ksproxy.def, ksuser.c, ksuser.def, msdmo.def, quartz.def,
strmiids.c, test.c): Ditto.
* lib/(d3dim.def, d3drm.def, d3dxof.def, ddraw.def, dinput.c,
dinput.def, dplayx.def, dsetup.def, dsound.def, dxguid.c): Removed.
2004-03-27 10:25:37 +08:00
|
|
|
uninstall: uninstall-ddk uninstall-directx uninstall-libraries uninstall-headers
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2009-10-30 05:53:47 +08:00
|
|
|
uninstall-libraries: $(need-DESTDIR-compatibility)
|
2012-01-15 20:39:00 +08:00
|
|
|
for file in $(LIBS); do \
|
2012-01-15 22:20:36 +08:00
|
|
|
rm -f $(DESTDIR)${inst_libdir}/$$file; \
|
2000-02-18 03:38:33 +08:00
|
|
|
done
|
2012-01-15 22:20:36 +08:00
|
|
|
rmdir $(DESTDIR)${inst_libdir}
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2009-10-30 05:53:47 +08:00
|
|
|
uninstall-headers: $(need-DESTDIR-compatibility)
|
2012-01-15 20:39:00 +08:00
|
|
|
for file in $(HEADERS); do \
|
2012-01-15 22:20:36 +08:00
|
|
|
rm -r $(DESTDIR)${inst_includedir}/$$file; \
|
2000-02-18 03:38:33 +08:00
|
|
|
done
|
2012-01-15 22:20:36 +08:00
|
|
|
rmdir $(DESTDIR)${inst_includedir}
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2002-11-26 02:14:25 +08:00
|
|
|
uninstall-ddk:
|
2011-12-13 04:02:33 +08:00
|
|
|
cd ddk && $(MAKE) uninstall
|
2001-02-13 03:45:33 +08:00
|
|
|
|
2004-03-27 Filip Navara <xnavara@volny.cz>
* include/directx: New subdir.
* lib/directx: Ditto.
* include/directx/(d3d9.h, d3d9caps.h, d3d9types.h, dxerr8.h,
dxerr9.h): New files.
* lib/ddk/(Makefile.in, d3d8.def, d3d9.def, d3dim.def, d3drm.def,
d3dx8d.def, d3dx9d.def, d3dxof.def, ddraw.def, dinput.def,
dinput_joy.c, dinput_joy2.c, dinput_kbd.c, dinput_mouse.c,
dinput_mouse2.c, dinput_private.h, dinput8.def, dmoguids.c, dplayx.def,
dpnaddr.def, dpnet.def, dpnlobby.def, dpvoice.def, dsetup.def,
dsound.def, dxerr.c, dxerr8.c, dxerr8w.c, dxerr9.c, dxerr9w.c,
dxguid.c, ksproxy.def, ksuser.c, ksuser.def, msdmo.def, quartz.def,
strmiids.c, test.c): Ditto.
* lib/(d3dim.def, d3drm.def, d3dxof.def, ddraw.def, dinput.c,
dinput.def, dplayx.def, dsetup.def, dsound.def, dxguid.c): Removed.
2004-03-27 10:25:37 +08:00
|
|
|
uninstall-directx:
|
2011-12-13 04:02:33 +08:00
|
|
|
cd directx && $(MAKE) uninstall
|
2004-03-27 Filip Navara <xnavara@volny.cz>
* include/directx: New subdir.
* lib/directx: Ditto.
* include/directx/(d3d9.h, d3d9caps.h, d3d9types.h, dxerr8.h,
dxerr9.h): New files.
* lib/ddk/(Makefile.in, d3d8.def, d3d9.def, d3dim.def, d3drm.def,
d3dx8d.def, d3dx9d.def, d3dxof.def, ddraw.def, dinput.def,
dinput_joy.c, dinput_joy2.c, dinput_kbd.c, dinput_mouse.c,
dinput_mouse2.c, dinput_private.h, dinput8.def, dmoguids.c, dplayx.def,
dpnaddr.def, dpnet.def, dpnlobby.def, dpvoice.def, dsetup.def,
dsound.def, dxerr.c, dxerr8.c, dxerr8w.c, dxerr9.c, dxerr9w.c,
dxguid.c, ksproxy.def, ksuser.c, ksuser.def, msdmo.def, quartz.def,
strmiids.c, test.c): Ditto.
* lib/(d3dim.def, d3drm.def, d3dxof.def, ddraw.def, dinput.c,
dinput.def, dplayx.def, dsetup.def, dsound.def, dxguid.c): Removed.
2004-03-27 10:25:37 +08:00
|
|
|
|
2000-02-18 03:38:33 +08:00
|
|
|
dist:
|
2012-01-15 22:20:36 +08:00
|
|
|
mkdir ${distdir}/include
|
|
|
|
chmod 755 ${distdir}/include
|
2012-01-15 20:39:00 +08:00
|
|
|
for file in $(HEADERS); do \
|
2012-01-15 23:31:11 +08:00
|
|
|
cp -p ${top_srcdir}/include/$$file ${distdir}/include; \
|
2000-02-18 03:38:33 +08:00
|
|
|
done
|
2012-01-15 22:20:36 +08:00
|
|
|
mkdir ${distdir}/include/GL
|
2012-01-15 20:39:00 +08:00
|
|
|
for file in $(GL_HEADERS); do \
|
2012-01-15 23:31:11 +08:00
|
|
|
cp -p ${top_srcdir}/include/GL/$$file ${distdir}/include/GL; \
|
2002-11-26 02:14:25 +08:00
|
|
|
done
|
2012-01-15 22:20:36 +08:00
|
|
|
mkdir ${distdir}/include/gdiplus
|
2012-01-15 20:39:00 +08:00
|
|
|
for file in $(GDIPLUS_HEADERS); do \
|
2012-01-15 23:31:11 +08:00
|
|
|
cp -p ${top_srcdir}/include/gdiplus/$$file ${distdir}/include/gdiplus; \
|
2011-03-26 11:41:23 +08:00
|
|
|
done
|
2012-01-15 22:20:36 +08:00
|
|
|
mkdir ${distdir}/lib
|
|
|
|
chmod 755 ${distdir}/lib
|
2012-01-15 20:39:00 +08:00
|
|
|
for file in $(DISTFILES); do \
|
2012-01-15 22:20:36 +08:00
|
|
|
cp -p ${srcdir}/$$file ${distdir}/lib; \
|
2000-02-18 03:38:33 +08:00
|
|
|
done
|
2012-01-15 20:39:00 +08:00
|
|
|
for dir in $(SUBDIRS); do \
|
2012-01-15 22:20:36 +08:00
|
|
|
(cd $$dir; $(MAKE) distdir=../${distdir} dist); \
|
2002-11-26 02:14:25 +08:00
|
|
|
done
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2011-12-14 04:46:53 +08:00
|
|
|
# Makefile.in: end of file
|