mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-10-31 14:13:52 +01:00 
			
		
		
		
	* Added a 'libmusicbrainz5' dependency. * Added a 'libdiscid' dependency. * Added a 'readcd_test' test harness.
		
			
				
	
	
		
			100 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			100 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| ## automake.am
 | |
| ##
 | |
| ## Automake.am for rivendell/rdairplay
 | |
| ##
 | |
| ## (C) 2002-2008,2016-2018 Fred Gleason <fredg@paravelsystems.com>
 | |
| ##
 | |
| ##   This program is free software; you can redistribute it and/or modify
 | |
| ##   it under the terms of the GNU General Public License version 2 as
 | |
| ##   published by the Free Software Foundation.
 | |
| ##
 | |
| ##   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 General Public License for more details.
 | |
| ##
 | |
| ##   You should have received a copy of the GNU General Public
 | |
| ##   License along with this program; if not, write to the Free Software
 | |
| ##   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 | |
| ##
 | |
| ##
 | |
| ## Use automake to process this into a Makefile.in
 | |
| 
 | |
| AM_CPPFLAGS = -Wall -DPREFIX=\"$(prefix)\" -I$(top_srcdir)/lib  -Wno-strict-aliasing @QT4_CFLAGS@ @MUSICBRAINZ_CFLAGS@ -DQT3_SUPPORT -I/usr/include/Qt3Support
 | |
| LIBS = -L$(top_srcdir)/lib
 | |
| MOC = @QT_MOC@
 | |
| 
 | |
| # The dependency for qt's Meta Object Compiler (moc)
 | |
| moc_%.cpp:	%.h
 | |
| 	$(MOC) $< -o $@
 | |
| 
 | |
| # I18N Stuff
 | |
| install-exec-local:	
 | |
| 	mkdir -p $(DESTDIR)$(prefix)/share/rivendell
 | |
| 	cp rdairplay_*.qm $(DESTDIR)$(prefix)/share/rivendell
 | |
| 
 | |
| uninstall-local:	
 | |
| 	rm -f $(DESTDIR)$(prefix)/share/rivendell/rdairplay_*.qm
 | |
| 
 | |
| all:	
 | |
| 	lupdate-qt4 rdairplay.pro
 | |
| 	lrelease-qt4 rdairplay.pro
 | |
| 
 | |
| bin_PROGRAMS = rdairplay
 | |
| 
 | |
| dist_rdairplay_SOURCES = button_log.cpp button_log.h\
 | |
|                          edit_event.cpp edit_event.h\
 | |
|                          globals.h\
 | |
|                          hourselector.cpp hourselector.h\
 | |
|                          lib_listview.cpp lib_listview.h\
 | |
|                          list_log.cpp list_log.h\
 | |
|                          list_logs.cpp list_logs.h\
 | |
|                          local_macros.cpp colors.h\
 | |
|                          loglinebox.cpp loglinebox.h\
 | |
|                          mode_display.cpp mode_display.h\
 | |
|                          pie_counter.cpp pie_counter.h\
 | |
|                          post_counter.cpp post_counter.h\
 | |
|                          rdairplay.cpp rdairplay.h\
 | |
|                          start_button.cpp start_button.h\
 | |
|                          stop_counter.cpp stop_counter.h\
 | |
|                          wall_clock.cpp wall_clock.h
 | |
| 
 | |
| 
 | |
| nodist_rdairplay_SOURCES = moc_button_log.cpp\
 | |
|                            moc_edit_event.cpp\
 | |
|                            moc_hourselector.cpp\
 | |
|                            moc_lib_listview.cpp\
 | |
|                            moc_list_log.cpp\
 | |
|                            moc_list_logs.cpp\
 | |
|                            moc_loglinebox.cpp\
 | |
|                            moc_mode_display.cpp\
 | |
|                            moc_pie_counter.cpp\
 | |
|                            moc_post_counter.cpp\
 | |
|                            moc_rdairplay.cpp\
 | |
|                            moc_start_button.cpp\
 | |
|                            moc_stop_counter.cpp\
 | |
|                            moc_wall_clock.cpp
 | |
| 
 | |
| rdairplay_LDADD = @LIB_RDLIBS@ @LIBVORBIS@ @QT4_LIBS@ @MUSICBRAINZ_LIBS@ -lQt3Support
 | |
| rdairplay_LDFLAGS = -rdynamic
 | |
| 
 | |
| EXTRA_DIST = rdairplay.pro\
 | |
|              rdairplay_cs.ts\
 | |
|              rdairplay_de.ts\
 | |
|              rdairplay_es.ts\
 | |
|              rdairplay_fr.ts\
 | |
|              rdairplay_nb.ts\
 | |
|              rdairplay_nn.ts\
 | |
|              rdairplay_pt_BR.ts
 | |
| 
 | |
| CLEANFILES = *~\
 | |
|              *.qm\
 | |
|              moc_*
 | |
| 
 | |
| MAINTAINERCLEANFILES = *~\
 | |
|                        *.tar.gz\
 | |
|                        aclocal.m4\
 | |
|                        configure\
 | |
|                        Makefile.in\
 | |
|                        moc_*
 |