BUILD: Cleaned unneeded information
[maevies] / src / Makefile.am
index bfd55ae..6d62d5a 100644 (file)
@@ -1,24 +1,16 @@
-# Copyright (c) 2007-2008 INdT.
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Lesser General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-#  This program is distributed in the hope that it will be useful,
-#  but WITHOUT ANY WARRANTY; without even the implied warranty of
-#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#  GNU Lesser General Public License for more details.
-#
-#  You should have received a copy of the GNU Lesser General Public License
-#  along with this program.  If not, see <http://www.gnu.org/licenses/>.
-AUTOMAKE_OPTIONS = foreign
+bin_PROGRAMS = mvs
 
-bin_PROGRAMS = maevies
+mvs_SOURCES = \
+       main.c
+       
+mvs_CFLAGS = \
+       $(DEPS_CFLAGS)
 
-maevies_SOURCES = main.cpp \
-                     mywindow.cpp \
-                     mywindow.h
+mvs_LDADD = \
+       $(DEPS_LIBS)
 
-maevies_LDADD = $(LIBHILDONMM_LIBS) $(LIBOSSO_LIBS)
-maevies_CXXFLAGS = $(LIBHILDONMM_CFLAGS) $(LIBOSSO_CFLAGS) -DHELLOWORLD_LOCALEDIR=\"${HELLOWORLD_LOCALEDIR}\"
+MAINTAINERCLEANFILES = \
+       *.in \
+       *~
+
+DISTCLEANFILES = $(MAINTAINERCLEANFILES)