2000-02-17 20:38:33 +01:00
|
|
|
#
|
|
|
|
# Makefile.in
|
|
|
|
#
|
|
|
|
# This file is part of a free library for the Win32 API.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
|
|
|
|
# start config section
|
|
|
|
|
|
|
|
SHELL = @SHELL@
|
|
|
|
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
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 03:25:37 +01:00
|
|
|
SUBDIRS := ddk directx
|
|
|
|
subdirs := ddk directx
|
2002-10-14 21:59:04 +02:00
|
|
|
|
|
|
|
host_alias = @host@
|
|
|
|
build_alias = @build@
|
|
|
|
target_alias = @target@
|
2000-02-17 20:38:33 +01:00
|
|
|
prefix = @prefix@
|
2001-04-25 05:51:06 +02:00
|
|
|
includedir:=@includedir@
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
program_transform_name = @program_transform_name@
|
|
|
|
exec_prefix = @exec_prefix@
|
2001-09-04 22:56:23 +02:00
|
|
|
libdir:=@libdir@
|
2000-02-17 20:38:33 +01:00
|
|
|
bindir = @bindir@
|
2000-12-11 19:14:15 +01:00
|
|
|
ifeq ($(target_alias),$(host_alias))
|
|
|
|
ifeq ($(build_alias),$(host_alias))
|
|
|
|
tooldir:=$(exec_prefix)
|
|
|
|
else
|
|
|
|
tooldir:=$(exec_prefix)/$(target_alias)
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
tooldir:=$(exec_prefix)/$(target_alias)
|
|
|
|
endif
|
2000-02-17 20:38:33 +01:00
|
|
|
datadir = @datadir@
|
|
|
|
infodir = @infodir@
|
2001-03-01 21:32:34 +01:00
|
|
|
ifneq (,$(findstring cygwin,$(target_alias)))
|
2001-09-13 19:45:55 +02:00
|
|
|
inst_includedir:=$(tooldir)/include/w32api
|
|
|
|
inst_libdir:=$(tooldir)/lib/w32api
|
2001-09-13 14:06:28 +02:00
|
|
|
else
|
2001-04-25 05:51:06 +02:00
|
|
|
inst_includedir:=$(includedir)
|
|
|
|
inst_libdir:=$(libdir)
|
2001-03-01 21:32:34 +01:00
|
|
|
endif
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
INSTALL = @INSTALL@
|
|
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
|
|
mkinstalldirs = mkdir -p
|
|
|
|
|
|
|
|
CC = @CC@
|
|
|
|
CC_FOR_TARGET = $(CC)
|
|
|
|
|
|
|
|
DLLTOOL = @DLLTOOL@
|
|
|
|
DLLTOOL_FLAGS = --as=$(AS) -k
|
|
|
|
AS = @AS@
|
|
|
|
AS_FOR_TARGET = $(AS_FOR_TARGET)
|
|
|
|
WINDRES = @WINDRES@
|
|
|
|
|
|
|
|
# Depending on if we build as part of winsup or mingw we need to
|
|
|
|
# add additional include paths in order to get the correct headers
|
|
|
|
# from the C library.
|
|
|
|
BUILDENV = @BUILDENV@
|
|
|
|
|
|
|
|
ifeq ($(BUILDENV), cygwin)
|
|
|
|
# winsup/include
|
|
|
|
# winsup/../newlib/libc/include
|
|
|
|
# winsup/../newlib/libc/sys/cygwin
|
|
|
|
EXTRA_INCLUDES = -I$(srcdir)/../../include -I$(srcdir)/../../../newlib/libc/include -I$(srcdir)/../../../newlib/libc/sys/cygwin
|
|
|
|
endif
|
|
|
|
ifeq ($(BUILDENV), mingw)
|
|
|
|
EXTRA_INCLUDES = -I$(srcdir)/../../mingw/include
|
|
|
|
endif
|
|
|
|
|
|
|
|
INCLUDES = -I$(srcdir)/../include $(EXTRA_INCLUDES)
|
|
|
|
|
|
|
|
CFLAGS = @CFLAGS@
|
|
|
|
ALL_CFLAGS = $(CFLAGS) $(INCLUDES)
|
|
|
|
|
|
|
|
RANLIB = @RANLIB@
|
|
|
|
AR = @AR@
|
|
|
|
LD = @LD@
|
|
|
|
|
2002-10-14 21:59:04 +02:00
|
|
|
FLAGS_TO_PASS = \
|
|
|
|
AS="$(AS)" \
|
|
|
|
CC="$(CC)" \
|
|
|
|
CPPFLAGS="$(CPPFLAGS)" \
|
|
|
|
CFLAGS="$(CFLAGS)" \
|
|
|
|
CXXFLAGS="$(CXXFLAGS)" \
|
|
|
|
AR="$(AR)" \
|
|
|
|
RANLIB="$(RANLIB)" \
|
|
|
|
LD="$(LD)" \
|
|
|
|
DLLTOOL="$(DLLTOOL)" \
|
|
|
|
TAR="$(TAR)" \
|
|
|
|
TARFLAGS="$(TARFLAGS)" \
|
|
|
|
TARFILEEXT="$(TARFILEEXT)" \
|
|
|
|
WINDRES="$(WINDRES)"
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
# end config section
|
|
|
|
|
|
|
|
# headers
|
|
|
|
|
|
|
|
HEADERS = $(notdir $(wildcard $(srcdir)/../include/*.h))
|
2002-05-28 15:20:28 +02:00
|
|
|
GL_HEADERS = $(notdir $(wildcard $(srcdir)/../include/GL/*.h))
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
# libraries
|
|
|
|
|
|
|
|
DEF_FILES = $(notdir $(wildcard $(srcdir)/*.def))
|
2003-11-27 03:14:37 +01:00
|
|
|
MRI_FILES = $(notdir $(wildcard $(srcdir)/*.mri))
|
2000-02-17 20:38:33 +01:00
|
|
|
IMPLIBS = $(addprefix lib,$(subst .def,.a,$(DEF_FILES)))
|
2003-11-27 03:14:37 +01:00
|
|
|
MIMPLIBS = $(addprefix lib,$(subst .mri,.a,$(MRI_FILES)))
|
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 03:25:37 +01:00
|
|
|
EXTRA_LIBS=libuuid.a libscrnsave.a libscrnsavw.a liblargeint.a
|
2003-11-27 03:14:37 +01:00
|
|
|
LIBS = $(IMPLIBS) $(MIMPLIBS) $(EXTRA_LIBS)
|
2003-03-29 22:31:15 +01:00
|
|
|
UUID_OBJS = uuid.o mshtml-uuid.o
|
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 03:25:37 +01:00
|
|
|
EXTRA_OBJS = shell32.o scrnsave.o scrnsavw.o largeint.o \
|
|
|
|
$(UUID_OBJS) kernel32.o
|
2003-03-29 22:31:15 +01:00
|
|
|
UUID_SOURCES = uuid.c mshtml-uuid.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 03:25:37 +01:00
|
|
|
SOURCES = scrnsave.c shell32.c largeint.c $(UUID_SOURCES)\
|
|
|
|
res.rc test.c kernel32.c
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-11-27 03:14:37 +01:00
|
|
|
DISTFILES = Makefile.in $(DEF_FILES) $(MRI_FILES) $(SOURCES)
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-11-04 21:38:00 +01:00
|
|
|
.NOTPARALLEL:
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
# targets
|
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 03:25:37 +01:00
|
|
|
all: $(LIBS) $(EXTRA_OBJS) ddk directx
|
2002-10-14 21:59:04 +02:00
|
|
|
|
|
|
|
%-subdirs:
|
|
|
|
for i in $(SUBDIRS); do \
|
|
|
|
$(MAKE) $(FLAGS_TO_PASS) -C $$i $*; \
|
|
|
|
done
|
|
|
|
|
|
|
|
ddk:
|
|
|
|
$(MAKE) $(FLAGS_TO_PASS) -C $@
|
2000-02-17 20:38:33 +01: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 03:25:37 +01:00
|
|
|
directx:
|
|
|
|
$(MAKE) $(FLAGS_TO_PASS) -C $@
|
|
|
|
|
2002-09-06 05:24:06 +02:00
|
|
|
TEST_OPTIONS = $(ALL_CFLAGS) -DWINVER=0x0666 \
|
|
|
|
-Wall -pedantic -Wsystem-headers -c $(srcdir)/test.c -o test.o
|
2004-03-30 00:39:46 +02:00
|
|
|
.PHONY: test ddk directx
|
2000-02-17 20:38:33 +01:00
|
|
|
test:
|
|
|
|
@echo "Testing w32api..."
|
|
|
|
@for lang in c c++ objective-c ; do \
|
|
|
|
echo "$$lang..."; \
|
|
|
|
$(CC) -x$$lang $(TEST_OPTIONS) ; \
|
|
|
|
echo "$$lang UNICODE..."; \
|
|
|
|
$(CC) -x$$lang -DUNICODE $(TEST_OPTIONS) ; \
|
|
|
|
done
|
|
|
|
@echo "windres..."
|
|
|
|
@$(WINDRES) --include-dir $(INCDIR) -i $(srcdir)/res.rc -o test.o
|
|
|
|
@echo "windres UNICODE..."
|
|
|
|
@$(WINDRES) --define UNICODE --include-dir $(INCDIR) -i $(srcdir)/res.rc -o test.o
|
|
|
|
@rm -f test.o
|
|
|
|
|
|
|
|
scrnsavw.o: scrnsave.c
|
|
|
|
$(CC) -c $(ALL_CFLAGS) -DUNICODE -o $@ $<
|
|
|
|
|
|
|
|
# make rules
|
|
|
|
|
|
|
|
.SUFFIXES: .c .o .def .a
|
|
|
|
|
|
|
|
.c.o:
|
|
|
|
$(CC) -c $(ALL_CFLAGS) -o $@ $<
|
|
|
|
|
2003-03-29 22:31:15 +01:00
|
|
|
libuuid.a : $(UUID_OBJS)
|
|
|
|
$(AR) rc $@ $(UUID_OBJS)
|
|
|
|
$(RANLIB) $@
|
|
|
|
|
2003-11-27 03:14:37 +01: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.
|
|
|
|
# NB: With older dlltool, the object file members will not have unique
|
|
|
|
# names.
|
2003-11-28 00:34:18 +01:00
|
|
|
libvfw32.a : vfw32.mri libmsvfw32.a libavifil32.a libavicap32.a
|
2003-11-27 03:14:37 +01:00
|
|
|
rm -f $@
|
2003-11-28 00:34:18 +01:00
|
|
|
$(AR) -M < ${word 1,$^}
|
2003-11-27 03:14:37 +01:00
|
|
|
$(RANLIB) $@
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
lib%.a : %.def %.o
|
|
|
|
$(DLLTOOL) $(DLLTOOL_FLAGS) --output-lib $@ --def $(srcdir)/$*.def
|
|
|
|
$(AR) r $@ $*.o
|
|
|
|
$(RANLIB) $@
|
|
|
|
|
|
|
|
lib%.a: %.def
|
|
|
|
$(DLLTOOL) $(DLLTOOL_FLAGS) --output-lib $@ --def $<
|
|
|
|
|
|
|
|
lib%.a: %.o
|
|
|
|
$(AR) rc $@ $*.o
|
|
|
|
$(RANLIB) $@
|
|
|
|
|
2002-11-25 19:14:25 +01:00
|
|
|
.PHONY: install install-libraries install-headers install-ddk
|
2000-10-20 06:39:21 +02: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 03:25:37 +01:00
|
|
|
install: install-libraries install-headers install-ddk install-directx
|
2000-10-20 06:39:21 +02:00
|
|
|
|
|
|
|
install-libraries: all
|
2001-04-25 05:51:06 +02:00
|
|
|
$(mkinstalldirs) $(inst_libdir)
|
2000-10-20 06:39:21 +02:00
|
|
|
for i in $(LIBS); do \
|
2001-04-25 05:51:06 +02:00
|
|
|
$(INSTALL_DATA) $$i $(inst_libdir)/$$i ; \
|
2000-10-20 06:39:21 +02:00
|
|
|
done
|
|
|
|
|
|
|
|
install-headers:
|
2001-04-25 05:51:06 +02:00
|
|
|
$(mkinstalldirs) $(inst_includedir)
|
2000-10-20 06:39:21 +02:00
|
|
|
for i in $(HEADERS); do \
|
2001-04-25 05:51:06 +02:00
|
|
|
$(INSTALL_DATA) $(srcdir)/../include/$$i $(inst_includedir)/$$i ; \
|
2000-10-20 06:39:21 +02:00
|
|
|
done
|
2002-05-28 15:20:28 +02:00
|
|
|
$(mkinstalldirs) $(inst_includedir)/GL
|
|
|
|
for i in $(GL_HEADERS); do \
|
|
|
|
$(INSTALL_DATA) $(srcdir)/../include/GL/$$i $(inst_includedir)/GL/$$i ; \
|
|
|
|
done
|
2000-10-20 06:39:21 +02:00
|
|
|
|
2002-10-14 21:59:04 +02:00
|
|
|
install-ddk: install-libraries install-headers
|
2003-03-11 15:44:58 +01:00
|
|
|
cd ddk && $(MAKE) install $(FLAGS_TO_PASS)
|
2002-10-14 21:59:04 +02: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 03:25:37 +01:00
|
|
|
install-directx: install-libraries install-headers
|
|
|
|
cd directx && $(MAKE) install $(FLAGS_TO_PASS)
|
|
|
|
|
2001-02-12 20:45:33 +01: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 03:25:37 +01:00
|
|
|
uninstall: uninstall-ddk uninstall-directx uninstall-libraries uninstall-headers
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
uninstall-libraries:
|
|
|
|
@for i in $(LIBS); do \
|
2001-04-25 05:51:06 +02:00
|
|
|
rm -f $(inst_libdir)/$$i ; \
|
2000-02-17 20:38:33 +01:00
|
|
|
done
|
2001-04-25 05:51:06 +02:00
|
|
|
rmdir $(inst_libdir)
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
uninstall-headers:
|
|
|
|
@for i in $(HEADERS); do \
|
2001-04-25 05:51:06 +02:00
|
|
|
rm -r $(inst_includedir)/$$i ; \
|
2000-02-17 20:38:33 +01:00
|
|
|
done
|
2001-04-25 05:51:06 +02:00
|
|
|
rmdir $(inst_includedir)
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2002-11-25 19:14:25 +01:00
|
|
|
uninstall-ddk:
|
|
|
|
cd ddk && $(MAKE) -C uninstall $(FLAGS_TO_PASS)
|
2001-02-12 20:45:33 +01: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 03:25:37 +01:00
|
|
|
uninstall-directx:
|
|
|
|
cd directx && $(MAKE) -C uninstall $(FLAGS_TO_PASS)
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
dist:
|
|
|
|
mkdir $(distdir)/include
|
|
|
|
chmod 755 $(distdir)/include
|
|
|
|
@for i in $(HEADERS); do \
|
|
|
|
cp -p $(srcdir)/../include/$$i $(distdir)/include/$$i ; \
|
|
|
|
done
|
2002-11-25 19:14:25 +01:00
|
|
|
mkdir $(distdir)/include/GL
|
|
|
|
@for i in $(GL_HEADERS); do \
|
|
|
|
cp -p $(srcdir)/../include/GL/$$i $(distdir)/include/GL/$$i ; \
|
|
|
|
done
|
2000-02-17 20:38:33 +01:00
|
|
|
mkdir $(distdir)/lib
|
|
|
|
chmod 755 $(distdir)/lib
|
|
|
|
@for i in $(DISTFILES); do \
|
|
|
|
cp -p $(srcdir)/$$i $(distdir)/lib/$$i ; \
|
|
|
|
done
|
2002-11-25 19:14:25 +01:00
|
|
|
for i in $(SUBDIRS); do \
|
|
|
|
(cd $$i; $(MAKE) distdir=../$(distdir) dist); \
|
|
|
|
done
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
Makefile: Makefile.in ../config.status ../configure
|
|
|
|
cd ..; $(SHELL) config.status
|
|
|
|
|
|
|
|
# clean
|
|
|
|
|
|
|
|
mostlyclean:
|
|
|
|
rm -f *~ *.o *.s
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f *.o *.a *.s *~
|
|
|
|
|
|
|
|
distclean: clean
|
|
|
|
rm -f config.cache config.status config.log Makefile
|
|
|
|
|
|
|
|
maintainer-clean: distclean
|
2002-10-14 21:59:04 +02:00
|
|
|
|