Remove ltt-armtap and disarmtap from the Makefile
[ltt-control.git] / lttctl / Makefile.am
CommitLineData
2727692a 1## Process this file with automake to produce Makefile.in
2
3AM_CFLAGS = -DPACKAGE_DATA_DIR=\""$(datadir)"\" -DPACKAGE_BIN_DIR=\""$(bindir)"\"
4
6e8902bf
MD
5# Ensure scripts are portable by depending only on /bin/sh
6SH = /bin/sh
7
2727692a 8bin_PROGRAMS = lttctl
07bb3e16 9bin_SCRIPTS = ltt-armall ltt-disarmall
3c037c17 10CLEANFILES = $(bin_SCRIPTS)
07bb3e16 11EXTRA_DIST = ltt-armall.sh ltt-disarmall.sh
3c037c17 12
13ltt-armall: ltt-armall.sh
14 rm -f ltt-armall
6e8902bf 15 echo "#!"$(SH) > ltt-armall
3c037c17 16 cat $(srcdir)/ltt-armall.sh >> ltt-armall
17 chmod ugo+x ltt-armall
18
19ltt-disarmall: ltt-disarmall.sh
20 rm -f ltt-disarmall
6e8902bf 21 echo "#!"$(SH) > ltt-disarmall
3c037c17 22 cat $(srcdir)/ltt-disarmall.sh >> ltt-disarmall
23 chmod ugo+x ltt-disarmall
2727692a 24
25lttctl_SOURCES = \
26 lttctl.c
27lttctl_DEPENDENCIES = ../liblttctl/liblttctl.la
28lttctl_LDADD = $(lttctl_DEPENDENCIES)
29
This page took 0.024101 seconds and 4 git commands to generate.