|
From: <le...@pr...> - 2004-11-07 12:16:50
|
Update of /cvsroot/meshdb/src/vpf/libvpf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1924/vpf/libvpf Modified Files: Tag: leonard-dev vpf.h vpfint.h Added Files: Tag: leonard-dev Makefile.am Removed Files: Tag: leonard-dev BSDmakefile GNUmakefile Makefile.common Log Message: more autoconf --- NEW FILE: Makefile.am --- # $Id: Makefile.am,v 1.1.2.1 2004/11/07 12:16:38 leonard Exp $ # David Leonard, 2004. Public domain. AM_CPPFLAGS = -I$(srcdir)/../../geo noinst_LIBRARIES= libvpf.a libvpf_a_SOURCES= vpf.c vpf_join.c vpf_select.c vpf_si.c vpf_theme.c Index: vpf.h =================================================================== RCS file: /cvsroot/meshdb/src/vpf/libvpf/vpf.h,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -u -d -r1.2 -r1.2.2.1 --- vpf.h 15 Sep 2002 13:55:42 -0000 1.2 +++ vpf.h 7 Nov 2004 12:16:38 -0000 1.2.2.1 @@ -4,7 +4,7 @@ #ifndef _h_vpf_ #define _h_vpf_ -#include "compat.h" +#include "compat/compat.h" /*------------------------------------------------------------ * types Index: vpfint.h =================================================================== RCS file: /cvsroot/meshdb/src/vpf/libvpf/vpfint.h,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -u -d -r1.2 -r1.2.2.1 --- vpfint.h 15 Sep 2002 13:55:42 -0000 1.2 +++ vpfint.h 7 Nov 2004 12:16:38 -0000 1.2.2.1 @@ -1,7 +1,7 @@ /* $Id$ */ /* David Leonard, 2002. Public domain. */ -#include "compat.h" +#include "compat/compat.h" /* integer endian conversion macros */ #define H(e,lsb,msb,i) ((e) == ENDIAN_MSB ? msb(i) : lsb(i)) --- BSDmakefile DELETED --- --- GNUmakefile DELETED --- --- Makefile.common DELETED --- |