1# the library's version
2VERSION:=@PACKAGE_VERSION@
3
4# tools
5@SET_MAKE@
6SHELL = /bin/sh
7MKDIR = mkdir
8
9top_builddir = @top_builddir@
10
11THIS=platform-specific
12DISTDIR?=$(top_builddir)/@PACKAGE_TARNAME@-@PACKAGE_VERSION@
13FILES:=Makefile.in $(wildcard *.h)
14
15clean:
16
17distclean:	clean
18	@rm -rf $(DISTDIR)
19	@rm -f *~
20
21dist:
22	test -d $(DISTDIR)/$(THIS) || mkdir $(DISTDIR)/$(THIS)
23	cp -r $(FILES) $(DISTDIR)/$(THIS)
24
25# this directory contains no installation candidates
26install:
27	:
28