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 41 42 43 44 45 46 47 48 49
|
# FILE IDENTIFICATION
#
# Name: Makefile
# Purpose: Makefile for the uffi package
# Programer: Kevin M. Rosenberg, M.D.
# Date Started: Mar 2002
#
# CVS Id: $Id: Makefile 7061 2003-09-07 06:34:45Z kevin $
#
# This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
#
# UFFI users are granted the rights to distribute and use this software
# as governed by the terms of the Lisp Lesser GNU Public License
# (http://opensource.franz.com/preamble.html), also known as the LLGPL.
PKG:=uffi
DEBPKG=cl-uffi
SUBDIRS:= examples src benchmarks
DOCSUBDIRS:=doc
include Makefile.common
.PHONY: all
all:
.PHONY: distclean
distclean: clean
@$(MAKE) -C doc $@
# ./debian/rules clean
SOURCE_FILES=src doc examples Makefile uffi.system uffi.debian.system \
benchmarks COPYRIGHT README TODO INSTALL ChangeLog NEWS \
test-examples.cl set-logical.cl
.PHONY: doc
doc:
$(MAKE) -C doc
.PHONY: dist
dist: clean
$(MAKE) -C doc $@
.PHONY: TAGS
TAGS:
if [ -f TAGS ]; then mv -f TAGS TAGS~; fi
find . -name \*.lisp -exec /usr/bin/etags -a \{\} \;
|