File: Makefile

package info (click to toggle)
instead 3.5.2%2Bdfsg-0.3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,316 kB
  • sloc: ansic: 28,336; sh: 452; makefile: 236
file content (21 lines) | stat: -rw-r--r-- 483 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
include ../Rules.make
include ../config.make

clean:
all:	stead2/stead.lua stead3/stead.lua

install:
	$(INSTALLD) $(DESTDIR)$(STEADPATH)

	for api in stead2 stead3; do \
		$(INSTALLD) $(DESTDIR)$(STEADPATH)/$$api; \
		$(INSTALLD) $(DESTDIR)$(STEADPATH)/$$api/ext; \
		for f in $$api/*.lua; do \
			$(INSTALL) $$f $(DESTDIR)$(STEADPATH)/$$f || exit 1; \
		done; \
		for f in $$api/ext/*.lua; do \
			$(INSTALL) $$f $(DESTDIR)$(STEADPATH)/$$f || exit 1; \
		done; \
	done

uninstall: