Update of /cvsroot/meshdb/src/vpf/psplot
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1924/vpf/psplot
Modified Files:
Tag: leonard-dev
psplot.c
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:39 leonard Exp $
# David Leonard, 2004. Public domain.
AM_CPPFLAGS = -I$(srcdir)/..
AM_CPPFLAGS += -I$(srcdir)/../../geo
bin_PROGRAMS = psplot
psplot_LDADD = ../libvpf/libvpf.a
psplot_LDADD += ../../geo/libgeo/libgeo.a
Index: psplot.c
===================================================================
RCS file: /cvsroot/meshdb/src/vpf/psplot/psplot.c,v
retrieving revision 1.4
retrieving revision 1.4.2.1
diff -u -d -r1.4 -r1.4.2.1
--- psplot.c 19 Sep 2002 03:56:48 -0000 1.4
+++ psplot.c 7 Nov 2004 12:16:39 -0000 1.4.2.1
@@ -8,8 +8,8 @@
#include <string.h>
#include <stdlib.h>
#include <stdarg.h>
-#include "geodesy.h"
-#include "vpf.h"
+#include "libgeo/geodesy.h"
+#include "libvpf/vpf.h"
#define RADIANS(deg) ((deg) * M_PI / 180)
#define DEGREES(rad) ((rad) * 180 / M_PI)
--- BSDmakefile DELETED ---
--- GNUmakefile DELETED ---
--- Makefile.common DELETED ---
|