diff --git a/CEP/CEPFrame/src/Makefile.am b/CEP/CEPFrame/src/Makefile.am
index 662e31358c52e07c7e5c5dd23288f2d083b8bce6..381e652b0c27ab5db579543c31a6f7e68a1573ee 100644
--- a/CEP/CEPFrame/src/Makefile.am
+++ b/CEP/CEPFrame/src/Makefile.am
@@ -1,4 +1,4 @@
-pkginclude_HEADERS = \
+pkginclude_HEADERS = Package__Version.h  \
 Semaphore.h					\
 DH_Example.h					\
 DH_Tester.h					\
@@ -22,7 +22,7 @@ CyclicBuffer.h
 
 lib_LTLIBRARIES 	= libcepframe.la
 
-libcepframe_la_SOURCES 	= $(pkginclude_HEADERS) \
+libcepframe_la_SOURCES 	= Package__Version.cc  $(pkginclude_HEADERS) \
 Semaphore.cc					\
 DH_Example.cc					\
 DH_Tester.cc					\
@@ -42,4 +42,10 @@ BlockRep.cc					\
 Composite.cc					\
 CompositeRep.cc					
 
+bin_PROGRAMS = versioncepframe
+
+versioncepframe_SOURCES      = versioncepframe.cc
+versioncepframe_LDADD        = libcepframe.la
+versioncepframe_DEPENDENCIES = libcepframe.la $(LOFAR_DEPEND)
+
 include $(top_srcdir)/Makefile.common