File: Makefile

package info (click to toggle)
savi 1.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,932 kB
  • sloc: ansic: 7,054; tcl: 5,755; makefile: 270; sh: 237
file content (21 lines) | stat: -rw-r--r-- 358 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
# Makefile - SaVi bin directory. Run top-level Makefile instead.
#
# $Id: Makefile 8 2019-01-24 04:33:00Z lloydwood $

    TOP = ../..
     RM = /bin/rm -f

SAVIBIN = SaVi

all:

clean:
	$(RM) *~ core $(SAVIBIN)*

tarfilelist::
	@srcs="Makefile $(SRCS) $(OTHER_SRCS)" ; \
	for i in $$srcs ; do \
	  echo "$(CURRENT_DIR)/$$i" >> $(TOP)/fileslist ; \
	done