diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-06-06 17:16:02 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-06-06 17:16:02 +0000 |
commit | bc7756e31c7c4f922040852e281c221bd4b13f61 (patch) | |
tree | e14e59327a2c9dda798ffc8eaa8e4b13cda1a355 | |
parent | d711964b8dea08aa0867d4117d0633a3c3f1d301 (diff) |
Initial revision
-rw-r--r-- | libihash/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/libihash/Makefile b/libihash/Makefile new file mode 100644 index 00000000..05504a71 --- /dev/null +++ b/libihash/Makefile @@ -0,0 +1,32 @@ +# +# Copyright (C) 1995 Free Software Foundation, Inc. +# Written by Michael I. Bushnell. +# +# This file is part of the GNU Hurd. +# +# The GNU Hurd is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2, or (at +# your option) any later version. +# +# The GNU Hurd is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +dir := libihash +makemode := library + +SRCS=ihash.c primes.c +LCLHDRS=ihash.h +OBJS=ihash.o primes.o +libname := libihash +installhdrs = ihash.h + +include ../Makeconf + + |