Update of /cvsroot/libphidget/libphidget/src/phidget++
In directory usw-pr-cvs1:/tmp/cvs-serv4882/src/phidget++
Modified Files:
.cvsignore Makefile.am
Removed Files:
main.cc
Log Message:
Changed the directory layout and functionality:
- ./src/phidget++ now contains the libphidget++ library components
- ./src/examples now contains the, ahem, examples
Index: .cvsignore
===================================================================
RCS file: /cvsroot/libphidget/libphidget/src/phidget++/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** .cvsignore 7 Sep 2002 20:12:30 -0000 1.2
--- .cvsignore 7 Sep 2002 21:56:54 -0000 1.3
***************
*** 3,5 ****
.deps
.libs
! phidget_test
--- 3,6 ----
.deps
.libs
! *.lo
! *.la
Index: Makefile.am
===================================================================
RCS file: /cvsroot/libphidget/libphidget/src/phidget++/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Makefile.am 7 Sep 2002 20:12:30 -0000 1.2
--- Makefile.am 7 Sep 2002 21:56:54 -0000 1.3
***************
*** 1,5 ****
! bin_PROGRAMS = phidget_test
! phidget_test_SOURCES = CPhidget.h \
CPhidgetManager.h \
CServo.h \
--- 1,5 ----
! lib_LTLIBRARIES = libphidget++.la
! libphidget___la_SOURCES = CPhidget.h \
CPhidgetManager.h \
CServo.h \
***************
*** 13,18 ****
CServoController.cc \
CUID.cc \
! CUniqueDevice.cc \
! main.cc
# These are not active yet
--- 13,17 ----
CServoController.cc \
CUID.cc \
! CUniqueDevice.cc
# These are not active yet
***************
*** 29,34 ****
! phidget_test_LDADD = ../libphidget/libphidget.la
! phidget_test_DEPENDENCIES = ../libphidget/libphidget.la
CXXFLAGS = -I../libphidget -L../libphidget
--- 28,33 ----
! #phidget_test_LDADD = ../libphidget/libphidget.la
! #phidget_test_DEPENDENCIES = ../libphidget/libphidget.la
CXXFLAGS = -I../libphidget -L../libphidget
***************
*** 36,40 ****
clean-generic:
! @RM@ -f *~
if DOXYGEN_ENABLED
--- 35,39 ----
clean-generic:
! @RM@ -f *~ .*~
if DOXYGEN_ENABLED
--- main.cc DELETED ---
|