Update AllegroCL for :long-long on 64-bit platforms
[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 # This file, part of UFFI, is Copyright (c) 2002-2010 by Kevin M. Rosenberg
9
10 PKG:=uffi
11 DEBPKG=cl-uffi
12 SUBDIRS:= examples src benchmarks
13 DOCSUBDIRS:=doc
14
15 include Makefile.common
16
17
18 .PHONY: all
19 all: 
20
21
22 .PHONY: distclean
23 distclean: clean
24         @$(MAKE) -C doc $@
25 #       ./debian/rules clean
26
27
28 SOURCE_FILES=src doc examples Makefile uffi.system uffi.debian.system \
29         benchmarks COPYRIGHT README TODO INSTALL ChangeLog NEWS \
30         test-examples.cl set-logical.cl 
31
32 .PHONY: doc
33 doc:
34         $(MAKE) -C doc
35
36 .PHONY: dist
37 dist: clean
38         $(MAKE) -C doc $@
39
40 .PHONY: TAGS
41 TAGS:
42         if [ -f TAGS ]; then mv -f TAGS TAGS~; fi
43         find . -name \*.lisp -exec /usr/bin/etags -a \{\} \;