Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile.in « lib « w32api « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 97201566a356b725c3d493ff041cd637ebe30ef6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
# @configure_input@
#
#
# 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.

SUBDIRS = ddk directx

srcdir = @srcdir@
top_srcdir = @top_srcdir@
top_builddir = @top_builddir@

VPATH = @srcdir@

include ${top_builddir}/Makefile.comm

# Headers
#
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))

# Libraries
#
DEF_FILES = $(notdir $(wildcard ${srcdir}/*.def))
MRI_FILES = $(notdir $(wildcard ${srcdir}/*.mri))
IMPLIBS = $(addprefix lib,$(subst .def,.a,$(DEF_FILES)))
MIMPLIBS = $(addprefix lib,$(subst .mri,.a,$(MRI_FILES)))

EXTRA_LIBS = libuuid.a libscrnsave.a libscrnsavw.a liblargeint.a

LIBS = $(IMPLIBS) $(MIMPLIBS) $(EXTRA_LIBS)

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 shobjidl-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 shobjidl-uuid.c

SOURCES = \
  scrnsave.c shell32.c  largeint.c gdiplus.c $(UUID_SOURCES) \
  res.rc test.c ws2_32.c

DISTFILES = Makefile.in $(DEF_FILES) $(MRI_FILES) $(SOURCES)

.NOTPARALLEL:
.PHONY: install install-libraries install-headers install-ddk
.PHONY: check test $(SUBDIRS)

# 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) $(SUBDIRS)

%-subdirs:
	for dir in $(SUBDIRS); do \
	  $(MAKE) -C $$dir $*; \
	done

$(SUBDIRS):
	cd $@ && $(MAKE)

TEST_OPTIONS = \
  $(ALL_CFLAGS) -DWINVER=0x0666 -Wall -pedantic -Wsystem-headers \
  -c ${srcdir}/test.c -o test.o

check 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 $@ $<

# Rules
#
libuuid.a: $(UUID_OBJS)
	$(AR) rc $@ $(UUID_OBJS)
	$(RANLIB) $@

# 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.
#
libvfw32.a: vfw32.mri libmsvfw32.a libavifil32.a libavicap32.a
	rm -f $@
	$(AR) -M < ${word 1,$^}
	$(RANLIB) $@

# Install headers and libraries in a target specified directory.
#
install: install-libraries install-headers install-ddk install-directx

install-libraries: all $(need-DESTDIR-compatibility)
	$(mkinstalldirs) $(DESTDIR)${inst_libdir}
	for file in $(LIBS); do \
	  $(INSTALL_DATA) $$file $(DESTDIR)${inst_libdir}; \
	done

install-headers: $(need-DESTDIR-compatibility)
	$(mkinstalldirs) $(DESTDIR)${inst_includedir}
	for file in $(HEADERS); do \
	  $(INSTALL_DATA) ${top_srcdir}/include/$$file $(DESTDIR)${inst_includedir}; \
	done
	$(mkinstalldirs) $(DESTDIR)${inst_includedir}/GL
	for file in $(GL_HEADERS); do \
	  $(INSTALL_DATA) ${top_srcdir}/include/GL/$$file $(DESTDIR)${inst_includedir}/GL; \
	done
	$(mkinstalldirs) $(DESTDIR)${inst_includedir}/gdiplus
	for file in $(GDIPLUS_HEADERS); do \
	  $(INSTALL_DATA) ${top_srcdir}/include/gdiplus/$$file $(DESTDIR)${inst_includedir}/gdiplus; \
	done

install-ddk: install-libraries install-headers
	cd ddk && $(MAKE) install

install-directx: install-libraries install-headers
	cd directx && $(MAKE) install

# Uninstall headers and libraries from a target specified directory
#
uninstall: uninstall-ddk uninstall-directx uninstall-libraries uninstall-headers

uninstall-libraries: $(need-DESTDIR-compatibility)
	for file in $(LIBS); do \
	  rm -f $(DESTDIR)${inst_libdir}/$$file; \
	done
	rmdir $(DESTDIR)${inst_libdir}

uninstall-headers: $(need-DESTDIR-compatibility)
	for file in $(HEADERS); do \
	  rm -f $(DESTDIR)${inst_includedir}/$$file; \
	done
	rmdir $(DESTDIR)${inst_includedir}

uninstall-ddk:
	cd ddk && $(MAKE) uninstall

uninstall-directx:
	cd directx && $(MAKE) uninstall

dist:
	mkdir ${distdir}/include
	chmod 755 ${distdir}/include
	for file in $(HEADERS); do \
	  cp -p ${top_srcdir}/include/$$file ${distdir}/include; \
	done
	mkdir ${distdir}/include/GL
	for file in $(GL_HEADERS); do \
	  cp -p ${top_srcdir}/include/GL/$$file ${distdir}/include/GL; \
	done
	mkdir ${distdir}/include/gdiplus
	for file in $(GDIPLUS_HEADERS); do \
	  cp -p ${top_srcdir}/include/gdiplus/$$file ${distdir}/include/gdiplus; \
	done
	mkdir ${distdir}/lib
	chmod 755 ${distdir}/lib
	for file in $(DISTFILES); do \
	  cp -p ${srcdir}/$$file ${distdir}/lib; \
	done
	for dir in $(SUBDIRS); do \
	  (cd $$dir; $(MAKE) distdir=../${distdir} dist); \
	done

# Makefile.in: end of file