summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2012-09-30 22:05:31 (EDT)
committer P. J. McDermott <pjm@nac.net>2012-09-30 22:05:31 (EDT)
commit5fdb72b72399e37e344d7a3126f8baa4032dbb2f (patch)
tree56071c243e3cf4564cfff7591ab531ef19c07a95 /lib
parent8c0afacf12ebc006e518f1e66d5d0effef2ee78f (diff)
Write lib/package/Makefile.in.
Diffstat (limited to 'lib')
-rw-r--r--lib/package/Makefile.in67
1 files changed, 67 insertions, 0 deletions
diff --git a/lib/package/Makefile.in b/lib/package/Makefile.in
new file mode 100644
index 0000000..e9b1d2a
--- /dev/null
+++ b/lib/package/Makefile.in
@@ -0,0 +1,67 @@
+# opkbuild
+# Makefile.in
+# Input Makefile for configure.
+#
+# Copyright (C) 2012 Patrick "P. J." McDermott
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+package_name = @package_name@
+package_version= @package_version@
+
+srcdir = @srcdir@
+prefix = @prefix@
+libdir = @libdir@
+
+sed_script = s&@@PACKAGE_NAME@@&$(package_name)&;\
+ s&@@PACKAGE_VERSION@@&$(package_version)&;
+
+.SUFFIXES:
+.SUFFIXES: .sh .sm
+
+SRCS = 2.sh
+OBJS = $(SRCS:.sh=.sm)
+
+distdir = ../$(package_name)-$(package_version)/lib/package
+distfiles = Makefile.in $(SRCS)
+
+all: $(OBJS)
+
+$(OBJS):
+ @printf ' SED lib/package/%s\n' '$@'
+ @sed '$(sed_script)' '$(srcdir)/lib/package/$*.sh' >'$@'
+
+clean:
+ @for obj in $(OBJS); do \
+ printf ' RM lib/package/%s\n' "$${obj}"; \
+ rm -f "$${obj}"; \
+ done
+
+install: all
+ @for obj in $(OBJS); do \
+ printf ' INSTALL lib/package/%s\n' "$${obj}"; \
+ mkdir -p '$(DESTDIR)/$(libdir)/package'; \
+ cp "$${obj}" "$(DESTDIR)/$(libdir)/package/$${obj}"; \
+ chmod 644 "$(DESTDIR)/$(libdir)/package/$${obj}"; \
+ done
+
+uninstall:
+ @for obj in $(OBJS); do \
+ printf ' RM %s\n' "$${obj}"; \
+ rm -f "$(DESTDIR)/$(libdir)/package/$${obj}"; \
+ done
+
+$(distdir):
+ @mkdir -p '$(distdir)'
+ @cp -pR $(distfiles) '$(distdir)'