Imported Upstream version 3.0
[debian/gnuradio] / gr-video-sdl / src / Makefile.am
1 #
2 # Copyright 2004,2005,2006 Free Software Foundation, Inc.
3
4 # This file is part of GNU Radio
5
6 # GNU Radio is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
9 # any later version.
10
11 # GNU Radio is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with GNU Radio; see the file COPYING.  If not, write to
18 # the Free Software Foundation, Inc., 51 Franklin Street,
19 # Boston, MA 02110-1301, USA.
20
21
22 include $(top_srcdir)/Makefile.common
23
24 # Install this stuff so that it ends up as the gnuradio.video_sdl module
25 # This usually ends up at:
26 #   ${prefix}/lib/python${python_version}/site-packages/gnuradio
27
28 ourpythondir = $(grpythondir)
29 ourlibdir    = $(grpyexecdir)
30
31 EXTRA_DIST = run_tests.in
32 TESTS = run_tests
33
34 LOCAL_IFILES =                          \
35         $(top_srcdir)/gr-video-sdl/src/video_sdl.i                              
36
37 NON_LOCAL_IFILES =                      \
38         $(GNURADIO_I)
39
40 ALL_IFILES =                            \
41         $(LOCAL_IFILES)                 \
42         $(NON_LOCAL_IFILES)             
43
44 BUILT_SOURCES =                         \
45         video_sdl.cc                    \
46         video_sdl.py                            
47
48 ourpython_PYTHON =                      \
49         video_sdl.py
50
51 INCLUDES = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS) $(SDL_CFLAGS)
52
53 SWIGCPPPYTHONARGS = -fvirtual -python -modern $(PYTHON_CPPFLAGS) $(STD_DEFINES_AND_INCLUDES)
54
55 ourlib_LTLIBRARIES = _video_sdl.la
56
57 _video_sdl_la_SOURCES =                 \
58         video_sdl.cc                    \
59         video_sdl_sink_uc.cc            \
60         video_sdl_sink_s.cc
61
62
63 grinclude_HEADERS =                     \
64         video_sdl_sink_uc.h             \
65         video_sdl_sink_s.h
66
67 swiginclude_HEADERS =                   \
68         $(LOCAL_IFILES)
69
70 _video_sdl_la_LIBADD =                  \
71         $(PYTHON_LDFLAGS)               \
72         $(GNURADIO_CORE_LIBS)           \
73         $(SDL_LIBS)                     \
74         -lstdc++                                
75
76 _video_sdl_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
77
78 video_sdl.cc video_sdl.py: $(ALL_IFILES)
79         $(SWIG) $(SWIGCPPPYTHONARGS) -module video_sdl -o video_sdl.cc $(LOCAL_IFILES)
80
81
82 noinst_PYTHON = qa_video_sdl.py
83
84 MOSTLYCLEANFILES = \
85         $(BUILT_SOURCES) *~ *.pyc
86
87 # Don't distribute output of swig
88 dist-hook:
89         @for file in $(BUILT_SOURCES); do echo $(RM) $(distdir)/$$file; done
90         @for file in $(BUILT_SOURCES); do $(RM) $(distdir)/$$file; done