File: Makefile.in

package info (click to toggle)
eli 4.4.1-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 29,180 kB
  • ctags: 46,497
  • sloc: ansic: 290,588; sh: 4,471; makefile: 4,420; tcl: 3,517; lisp: 73; yacc: 71; sed: 44; awk: 11
file content (13 lines) | stat: -rw-r--r-- 236 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
all:	cpp.exe

tidy:
	rm -f *.o

clean:	tidy
	rm -f cpp.exe

distclean:	clean
	rm -f Makefile config.h config.cache config.log config.status

cpp.exe:	cccp.o cexp.o obstack.o version.o
	$(CC) -o cpp.exe cccp.o cexp.o obstack.o version.o