File: Makefile

package info (click to toggle)
ibcs 981105-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 1,800 kB
  • ctags: 4,031
  • sloc: ansic: 27,707; makefile: 471; sh: 199; perl: 18; pascal: 2
file content (33 lines) | stat: -rw-r--r-- 566 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#
# ibcs/Tools/Makefile 
#
# $Id: Makefile,v 1.10 1998/10/11 11:00:18 jaggy Exp $
# $Source: /u/CVS/ibcs/Tools/Makefile,v $
#


all:		lnxstamp trace

install:	all
		cp mkmnttab /usr/bin/mkmnttab
		chmod 755 /usr/bin/mkmnttab

clean:
		rm -f trace lnxstamp


lnxstamp:	lnxstamp.c
		cc -O -fomit-frame-pointer -o lnxstamp lnxstamp.c

trace:		trace.c
		cc -O -fomit-frame-pointer -o trace -I../include trace.c

dep:
		$(CPP) -M -I../include $(CFLAGS) *.c > .depend

#
# include a dependency file if one exists
#
ifeq (.depend,$(wildcard .depend))
include .depend
endif