From 9b68bf8f7b8031f140ad59285b60db14ecc9974a Mon Sep 17 00:00:00 2001 From: Roland Lutz Date: Mon, 2 Mar 2015 19:29:10 +0100 Subject: [PATCH] Move library source to src/ directory --- Makefile.am | 3 +-- src/Makefile.am | 4 ++-- {exposed => src}/lib.cpp | 0 3 files changed, 3 insertions(+), 4 deletions(-) rename {exposed => src}/lib.cpp (100%) diff --git a/Makefile.am b/Makefile.am index 7dfc4a3..4687bce 100644 --- a/Makefile.am +++ b/Makefile.am @@ -10,8 +10,7 @@ exposed = \ exposed/CDemo.c \ exposed/DOC.txt \ exposed/Makefile \ - exposed/VbDemo.vb \ - exposed/lib.cpp + exposed/VbDemo.vb EXTRA_DIST = \ $(exposed) \ diff --git a/src/Makefile.am b/src/Makefile.am index 60db1e4..2a18fe1 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -5,13 +5,13 @@ AUTOMAKE_OPTIONS = subdir-objects noinst_LIBRARIES = libslvs.a libslvs_a_SOURCES = \ - ../exposed/lib.cpp \ util.cpp \ entity.cpp \ expr.cpp \ constraint.cpp \ constrainteq.cpp \ - system.cpp + system.cpp \ + lib.cpp libslvs_a_CPPFLAGS = -DLIBRARY -I$(top_srcdir)/include AM_CPPFLAGS = $(FLTK_CXXFLAGS) $(LIBSPNAV_CPPFLAGS) diff --git a/exposed/lib.cpp b/src/lib.cpp similarity index 100% rename from exposed/lib.cpp rename to src/lib.cpp