File: Makefile.in

package info (click to toggle)
slsc 0.2.3-4
  • links: PTS
  • area: main
  • in suites: slink
  • size: 468 kB
  • ctags: 707
  • sloc: ansic: 6,656; yacc: 394; makefile: 105; lisp: 71; sed: 4
file content (20 lines) | stat: -rw-r--r-- 280 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- sh -*-

#This is a UNIX-only makefile.

@SET_MAKE@

all:
	cd src; $(MAKE) all
clean:
	/bin/rm -f *~
	cd src; $(MAKE) clean
#
distclean:
	/bin/rm -f *~ Makefile config.status config.log config.cache files.pck
	cd src; $(MAKE) distclean
#
install:
	cd src; $(MAKE) install
#