File: Makefile.in

package info (click to toggle)
tmexpand 0.1.2.0-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 500 kB
  • sloc: sh: 189; makefile: 161
file content (21 lines) | stat: -rw-r--r-- 696 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
install_dir	= @prefix@/bin
INSTALL		= @INSTALL@
INSTALL_DATA	= @INSTALL_DATA@
MKINSDIR	= ../autoconf/mkinsdir.sh
#---------------------------------------------------------------------------
# DESTDIR is designed to facilitate making packages.  Normally it is empty
#---------------------------------------------------------------------------
DESTDIR =
DEST_INSTALL_DIR = $(DESTDIR)$(install_dir)
#---------------------------------------------------------------------------
all:
#
$(DEST_INSTALL_DIR):
	$(MKINSDIR) $(DEST_INSTALL_DIR)
install: $(DEST_INSTALL_DIR)
	@echo $(INSTALL) tmexpand $(DEST_INSTALL_DIR)
	$(INSTALL) tmexpand $(DEST_INSTALL_DIR)
clean:
	/bin/rm -rf *~ #*
distclean: clean
#