[go: up one dir, main page]

File: Makefile

package info (click to toggle)
cl-local-time 1.1.6-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 188 kB
  • ctags: 203
  • sloc: lisp: 1,374; sh: 89; makefile: 75
file content (40 lines) | stat: -rw-r--r-- 633 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
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# -*- Mode: makefile -*-
# $Id: Makefile,v 1.6 2002/01/18 01:40:58 apharris Exp $

# Makefile for LocalTime

SUBDIRS		:= 
DOCSUBDIRS	:= 

LISP		:= lisp

.PHONY: all wwwdist clean distclean install dist tags

all:
	@echo "nothing to be done"

dist:
	./make-dist.sh

wwwdist:
	@# subdirs not working
	@# set -e; for i in $(DOCSUBDIRS); do $(MAKE) -C $$i $@; done

tags:	TAGS

TAGS:	*.lisp
	etags *.lisp

freeze:
	@echo tagging with frozen tag
	cvs -q rtag -d frozen local-time
	cvs -q tag -F frozen .

clean:
	rm -f *.x86f *.sparcf *.ufsl *.fasl *.err *~ *.bak .\#* \#*

distclean:
	rm -f ChangeLog*
	rm -f TAGS
	./debian/rules clean