r11022: revert incorrect stuff from clisp testing
[uffi.git] / Makefile
1 # FILE IDENTIFICATION
2
3 #  Name:         Makefile
4 #  Purpose:      Makefile for the uffi package
5 #  Programer:    Kevin M. Rosenberg, M.D.
6 #  Date Started: Mar 2002
7 #
8 #  CVS Id:   $Id$
9 #
10 # This file, part of UFFI, is Copyright (c) 2002-2005 by Kevin M. Rosenberg
11
12 PKG:=uffi
13 DEBPKG=cl-uffi
14 SUBDIRS:= examples src benchmarks
15 DOCSUBDIRS:=doc
16
17 include Makefile.common
18
19
20 .PHONY: all
21 all: 
22
23
24 .PHONY: distclean
25 distclean: clean
26         @$(MAKE) -C doc $@
27 #       ./debian/rules clean
28
29
30 SOURCE_FILES=src doc examples Makefile uffi.system uffi.debian.system \
31         benchmarks COPYRIGHT README TODO INSTALL ChangeLog NEWS \
32         test-examples.cl set-logical.cl 
33
34 .PHONY: doc
35 doc:
36         $(MAKE) -C doc
37
38 .PHONY: dist
39 dist: clean
40         $(MAKE) -C doc $@
41
42 .PHONY: TAGS
43 TAGS:
44         if [ -f TAGS ]; then mv -f TAGS TAGS~; fi
45         find . -name \*.lisp -exec /usr/bin/etags -a \{\} \;