mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-10-30 17:23:53 +01:00 
			
		
		
		
	* Removed all CVS tags. * Removed 'const char *name' parameter from all QObject contructors.
		
			
				
	
	
		
			238 lines
		
	
	
		
			10 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			238 lines
		
	
	
		
			10 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| ## automake.am
 | |
| ##
 | |
| ## Automake.am for rivendell/rdadmin
 | |
| ##
 | |
| ## (C) Copyright 2002-2006,2016 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)\" -DQTDIR=\"@QT_DIR@\" @QT_CXXFLAGS@ -I$(top_srcdir)/lib
 | |
| LIBS = @QT_LIBS@ -L$(top_srcdir)/lib
 | |
| MOC = @QT_MOC@
 | |
| CWRAP = ../helpers/cwrap
 | |
| 
 | |
| # 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 rdadmin_*.qm $(DESTDIR)$(prefix)/share/rivendell
 | |
| 
 | |
| uninstall-local:
 | |
| 	rm -f $(DESTDIR)$(prefix)/share/rivendell/rdadmin_*.qm
 | |
| 
 | |
| all:	
 | |
| 	@QT_BIN@/lupdate rdadmin.pro
 | |
| 	@QT_BIN@/lrelease rdadmin.pro
 | |
| 
 | |
| bin_PROGRAMS = rdadmin
 | |
| 
 | |
| dist_rdadmin_SOURCES = add_aux_field.cpp add_aux_field.h\
 | |
|                        add_encoder.cpp add_encoder.h\
 | |
|                        add_feed.cpp add_feed.h\
 | |
|                        add_group.cpp add_group.h\
 | |
|                        add_hostvar.cpp add_hostvar.h\
 | |
|                        add_matrix.cpp add_matrix.h\
 | |
|                        add_replicator.cpp add_replicator.h\
 | |
|                        add_report.cpp add_report.h\
 | |
|                        add_schedcodes.cpp add_schedcodes.h\
 | |
|                        add_station.cpp add_station.h\
 | |
|                        add_svc.cpp add_svc.h\
 | |
|                        add_user.cpp add_user.h\
 | |
|                        autofill_carts.cpp autofill_carts.h\
 | |
|                        createdb.cpp createdb.h\
 | |
|                        edit_audios.cpp edit_audios.h\
 | |
|                        edit_aux_field.cpp edit_aux_field.h\
 | |
|                        edit_backup.cpp edit_backup.h\
 | |
|                        edit_cartslots.cpp edit_cartslots.h\
 | |
|                        edit_channelgpios.cpp edit_channelgpios.h\
 | |
|                        edit_decks.cpp edit_decks.h\
 | |
|                        edit_dropbox.cpp edit_dropbox.h\
 | |
|                        edit_encoder.cpp edit_encoder.h\
 | |
|                        edit_endpoint.cpp edit_endpoint.h\
 | |
|                        edit_feed.cpp edit_feed.h\
 | |
|                        edit_feed_perms.cpp edit_feed_perms.h\
 | |
|                        edit_gpi.cpp edit_gpi.h\
 | |
|                        edit_group.cpp edit_group.h\
 | |
|                        edit_hostvar.cpp edit_hostvar.h\
 | |
|                        edit_hotkeys.cpp edit_hotkeys.h\
 | |
|                        edit_jack.cpp edit_jack.h\
 | |
|                        edit_jack_client.cpp edit_jack_client.h\
 | |
|                        edit_livewiregpio.cpp edit_livewiregpio.h\
 | |
|                        edit_matrix.cpp edit_matrix.h\
 | |
|                        edit_node.cpp edit_node.h\
 | |
|                        edit_now_next.cpp edit_now_next.h\
 | |
|                        edit_nownextplugin.cpp edit_nownextplugin.h\
 | |
|                        edit_rdairplay.cpp edit_rdairplay.h\
 | |
|                        edit_rdlibrary.cpp edit_rdlibrary.h\
 | |
|                        edit_rdlogedit.cpp edit_rdlogedit.h\
 | |
|                        edit_rdpanel.cpp edit_rdpanel.h\
 | |
|                        edit_replicator.cpp edit_replicator.h\
 | |
|                        edit_report.cpp edit_report.h\
 | |
|                        edit_sas_resource.cpp edit_sas_resource.h\
 | |
|                        edit_schedcodes.cpp edit_schedcodes.h\
 | |
|                        edit_settings.cpp edit_settings.h\
 | |
|                        edit_station.cpp edit_station.h\
 | |
|                        edit_svc.cpp edit_svc.h\
 | |
|                        edit_svc_perms.cpp edit_svc_perms.h\
 | |
|                        edit_ttys.cpp edit_ttys.h\
 | |
|                        edit_user.cpp edit_user.h\
 | |
|                        edit_user_perms.cpp edit_user_perms.h\
 | |
|                        edit_vguest_resource.cpp edit_vguest_resource.h\
 | |
|                        globals.h\
 | |
|                        help_audios.cpp help_audios.h\
 | |
|                        importfields.cpp importfields.h\
 | |
|                        info_dialog.cpp info_dialog.h\
 | |
|                        list_aux_fields.cpp list_aux_fields.h\
 | |
|                        list_dropboxes.cpp list_dropboxes.h\
 | |
|                        list_encoders.cpp list_encoders.h\
 | |
|                        list_endpoints.cpp list_endpoints.h\
 | |
|                        list_feeds.cpp list_feeds.h\
 | |
|                        list_gpis.cpp list_gpis.h\
 | |
|                        list_groups.cpp list_groups.h\
 | |
|                        list_hostvars.cpp list_hostvars.h\
 | |
|                        list_livewiregpios.cpp list_livewiregpios.h\
 | |
|                        list_matrices.cpp list_matrices.h\
 | |
|                        list_nodes.cpp list_nodes.h\
 | |
|                        list_replicator_carts.cpp list_replicator_carts.h\
 | |
|                        list_replicators.cpp list_replicators.h\
 | |
|                        list_reports.cpp list_reports.h\
 | |
|                        list_sas_resources.cpp list_sas_resources.h\
 | |
|                        list_schedcodes.cpp list_schedcodes.h\
 | |
|                        list_stations.cpp list_stations.h\
 | |
|                        list_svcs.cpp list_svcs.h\
 | |
|                        list_users.cpp list_users.h\
 | |
|                        list_vguest_resources.cpp list_vguest_resources.h\
 | |
|                        login.cpp login.h\
 | |
|                        mysql_login.cpp mysql_login.h\
 | |
|                        opendb.cpp opendb.h\
 | |
|                        rdadmin.cpp rdadmin.h\
 | |
|                        rename_group.cpp rename_group.h\
 | |
|                        test_import.cpp test_import.h\
 | |
|                        view_adapters.cpp view_adapters.h\
 | |
|                        view_node_info.cpp view_node_info.h
 | |
| 
 | |
| nodist_rdadmin_SOURCES = moc_add_aux_field.cpp\
 | |
|                          moc_add_encoder.cpp\
 | |
|                          moc_add_feed.cpp\
 | |
|                          moc_add_group.cpp\
 | |
|                          moc_add_hostvar.cpp\
 | |
|                          moc_add_matrix.cpp\
 | |
|                          moc_add_replicator.cpp\
 | |
|                          moc_add_report.cpp\
 | |
|                          moc_add_schedcodes.cpp\
 | |
|                          moc_add_station.cpp\
 | |
|                          moc_add_svc.cpp\
 | |
|                          moc_add_user.cpp\
 | |
|                          moc_autofill_carts.cpp\
 | |
|                          moc_edit_audios.cpp\
 | |
|                          moc_edit_aux_field.cpp\
 | |
|                          moc_edit_backup.cpp\
 | |
|                          moc_edit_cartslots.cpp\
 | |
|                          moc_edit_channelgpios.cpp\
 | |
|                          moc_edit_decks.cpp\
 | |
|                          moc_edit_dropbox.cpp\
 | |
|                          moc_edit_encoder.cpp\
 | |
|                          moc_edit_endpoint.cpp\
 | |
|                          moc_edit_feed.cpp\
 | |
|                          moc_edit_feed_perms.cpp\
 | |
|                          moc_edit_gpi.cpp\
 | |
|                          moc_edit_group.cpp\
 | |
|                          moc_edit_hostvar.cpp\
 | |
|                          moc_edit_hotkeys.cpp\
 | |
|                          moc_edit_jack.cpp\
 | |
|                          moc_edit_jack_client.cpp\
 | |
|                          moc_edit_livewiregpio.cpp\
 | |
|                          moc_edit_matrix.cpp\
 | |
|                          moc_edit_node.cpp\
 | |
|                          moc_edit_now_next.cpp\
 | |
|                          moc_edit_nownextplugin.cpp\
 | |
|                          moc_edit_rdairplay.cpp\
 | |
|                          moc_edit_rdlibrary.cpp\
 | |
|                          moc_edit_rdlogedit.cpp\
 | |
|                          moc_edit_rdpanel.cpp\
 | |
|                          moc_edit_replicator.cpp\
 | |
|                          moc_edit_report.cpp\
 | |
|                          moc_edit_sas_resource.cpp\
 | |
|                          moc_edit_schedcodes.cpp\
 | |
|                          moc_edit_settings.cpp\
 | |
|                          moc_edit_station.cpp\
 | |
|                          moc_edit_svc.cpp\
 | |
|                          moc_edit_svc_perms.cpp\
 | |
|                          moc_edit_ttys.cpp\
 | |
|                          moc_edit_user.cpp\
 | |
|                          moc_edit_user_perms.cpp\
 | |
|                          moc_edit_vguest_resource.cpp\
 | |
|                          moc_help_audios.cpp\
 | |
|                          moc_importfields.cpp\
 | |
|                          moc_info_dialog.cpp\
 | |
|                          moc_list_aux_fields.cpp\
 | |
|                          moc_list_dropboxes.cpp\
 | |
|                          moc_list_encoders.cpp\
 | |
|                          moc_list_endpoints.cpp\
 | |
|                          moc_list_feeds.cpp\
 | |
|                          moc_list_gpis.cpp\
 | |
|                          moc_list_groups.cpp\
 | |
|                          moc_list_hostvars.cpp\
 | |
|                          moc_list_livewiregpios.cpp\
 | |
|                          moc_list_matrices.cpp\
 | |
|                          moc_list_nodes.cpp\
 | |
|                          moc_list_replicator_carts.cpp\
 | |
|                          moc_list_replicators.cpp\
 | |
|                          moc_list_reports.cpp\
 | |
|                          moc_list_sas_resources.cpp\
 | |
|                          moc_list_schedcodes.cpp\
 | |
|                          moc_list_stations.cpp\
 | |
|                          moc_list_svcs.cpp\
 | |
|                          moc_list_users.cpp\
 | |
|                          moc_list_vguest_resources.cpp\
 | |
|                          moc_login.cpp\
 | |
|                          moc_mysql_login.cpp\
 | |
|                          moc_rdadmin.cpp\
 | |
|                          moc_rename_group.cpp\
 | |
|                          moc_test_import.cpp\
 | |
|                          moc_view_adapters.cpp\
 | |
|                          moc_view_node_info.cpp
 | |
| 
 | |
| rdadmin_LDADD = @LIB_RDLIBS@ -lsamplerate @LIBVORBIS@
 | |
| 
 | |
| EXTRA_DIST = info_banner1.xpm\
 | |
|              info_banner2.xpm\
 | |
|              rdadmin.pro\
 | |
|              rdadmin_cs.ts\
 | |
|              rdadmin_de.ts\
 | |
|              rdadmin_es.ts\
 | |
|              rdadmin_fr.ts\
 | |
|              rdadmin_nb.ts\
 | |
|              rdadmin_nn.ts\
 | |
|              rdadmin_pt_BR.ts\
 | |
|              xpm_info_banner1.cpp\
 | |
|              xpm_info_banner2.cpp
 | |
| 
 | |
| CLEANFILES = *~\
 | |
|              *.qm\
 | |
|              moc_*
 | |
| 
 | |
| MAINTAINERCLEANFILES = *~\
 | |
|                        *.tar.gz\
 | |
|                        aclocal.m4\
 | |
|                        configure\
 | |
|                        Makefile.in\
 | |
|                        moc_*
 |