File: Makefile.am

package info (click to toggle)
xtermcontrol 3.8-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 852 kB
  • sloc: ansic: 5,230; sh: 4,309; makefile: 47
file content (19 lines) | stat: -rw-r--r-- 321 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

CLEANFILES = $(PACKAGE).sh

ROOTNAME = xtermcontrol

EXTRA_DIST = $(ROOTNAME).test

all: $(PACKAGE).sh

test: $(PACKAGE).sh
	./$(PACKAGE).sh

$(PACKAGE).sh: $(ROOTNAME).test
	@echo '#! /bin/sh -e' > $@;\
	echo ' ' >> $@;\
	echo "XTC=\"../src/$(PACKAGE)\"" >> $@;\
	cat $(srcdir)/$(ROOTNAME).test >> $@;\
	chmod 700 $@;