blob: a5ac942f4d4088e95dcb99dc9d0869be6ad7e376 (
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
|
# Build, install and distribute the following subdirectories:
SUBDIRS = admin src include examples test_suite
# We keep our local autoconf macros in a separate 'm4'subdirectory.
ACLOCAL_AMFLAGS = -I admin/autotools/m4
# The following files should be in our source distribution in addition to the
# standard ones included by automake itself:
EXTRA_DIST = \
admin/autotools/.indent.pro \
admin/RPM/freealut.spec \
admin/VisualStudio6/alut/alut.dsp \
admin/VisualStudio6/alut.dsw \
admin/VisualStudio6/hello_world/hello_world.dsp \
admin/VisualStudio6/playfile/playfile.dsp \
admin/VisualStudioDotNET/alut/alut.vcproj \
admin/VisualStudioDotNET/alut.sln \
admin/VisualStudioDotNET/hello_world/hello_world.vcproj \
admin/VisualStudioDotNET/playfile/playfile.vcproj \
admin/CMakeModules/FindCompilerAttribute.cmake \
admin/CMakeModules/FindCompilerFlagsSet.cmake \
admin/CMakeModules/FindCompilerVisibility.cmake \
admin/CMakeModules/FindConfigHelper.cmake \
admin/CMakeModules/FindSleepFunction.cmake \
autogen.sh \
doc/alut.css \
doc/alut.html \
CMakeLists.txt
# Automatically rebuild libtool if it becomes out-of-date.
libtool: $(LIBTOOL_DEPS)
$(SHELL) ./config.status --recheck
# The Creative repository has some broken permissions, let's fix this.
permissions:
find . -type f \! -perm +222 \! -name "*.sh" -exec chmod +w {} \;
# Automatically reformat all C headers and sources with indent according to
# admin/autotools/.indent.pro, but be make-friendly and take some precautions to
# leave those files untouched which wouldn't change. Do not reformat the public
# ALUT header, it won't look the way we want it due to the 'extern "C" { ... }'
# wrapper in it.
indent:
@for i in `find . \( -name "*.c" -o -name "*.h" \) \! -name alut.h -print` ; do \
cat $$i | ( cd admin/autotools ; indent ) > indent.tmp ; \
if diff $$i indent.tmp > /dev/null 2>&1 ; then \
: ; \
else \
echo Reformatted $$i ; \
$(RM) $$i ; \
mv indent.tmp $$i ; \
fi ; \
done
@$(RM) indent.tmp
# Targets which are no files
.PHONY: permissions indent
|