mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-11-04 08:04:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			93 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
## automake.am
 | 
						|
##
 | 
						|
## Automake.am for rivendell/mlhpi
 | 
						|
##
 | 
						|
## by Fred Gleason <fredg@paravelsystems.com>
 | 
						|
##
 | 
						|
## Use automake to process this into a Makefile.in
 | 
						|
##
 | 
						|
##   (C) Copyright 2002-2007,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.
 | 
						|
##
 | 
						|
 | 
						|
AM_CPPFLAGS = -Wall -DPREFIX=\"$(prefix)\" -I$(top_srcdir)/lib @QT4_CFLAGS@ -DQT3_SUPPORT -I/usr/include/Qt3Support
 | 
						|
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 $@
 | 
						|
 | 
						|
# The cwrap dependency
 | 
						|
html_%.cpp:	%.html
 | 
						|
	$(CWRAP) -o $@ $<
 | 
						|
 | 
						|
instdir = @LOCAL_PREFIX@/lib
 | 
						|
 | 
						|
# I18N Stuff
 | 
						|
install-exec-local:	
 | 
						|
	mkdir -p $(DESTDIR)$(prefix)/share/rivendell
 | 
						|
	cp rdhpi_*.qm $(DESTDIR)$(prefix)/share/rivendell
 | 
						|
 | 
						|
uninstall-local:	
 | 
						|
	rm -f $(DESTDIR)$(prefix)/share/rivendell/rdhpi_*.qm
 | 
						|
 | 
						|
all:	
 | 
						|
	lupdate-qt4 rdhpi.pro
 | 
						|
	lrelease-qt4 rdhpi.pro
 | 
						|
 | 
						|
lib_LTLIBRARIES = librdhpi.la
 | 
						|
dist_librdhpi_la_SOURCES = rdhpicardselector.cpp rdhpicardselector.h\
 | 
						|
                           rdhpiinformation.cpp rdhpiinformation.h\
 | 
						|
                           rdhpiplaystream.cpp rdhpiplaystream.h\
 | 
						|
                           rdhpirecordstream.cpp rdhpirecordstream.h\
 | 
						|
                           rdhpisoundcard.cpp rdhpisoundcard.h\
 | 
						|
                           rdhpisoundselector.cpp rdhpisoundselector.h
 | 
						|
 | 
						|
nodist_librdhpi_la_SOURCES = moc_rdhpicardselector.cpp\
 | 
						|
                             moc_rdhpiplaystream.cpp\
 | 
						|
                             moc_rdhpirecordstream.cpp\
 | 
						|
                             moc_rdhpisoundcard.cpp\
 | 
						|
                             moc_rdhpisoundselector.cpp
 | 
						|
 | 
						|
 | 
						|
librdhpi_la_LDFLAGS = -release $(VERSION)
 | 
						|
 | 
						|
EXTRA_DIST = rdhpi.pro\
 | 
						|
             rdhpi_cs.ts\
 | 
						|
             rdhpi_de.ts\
 | 
						|
             rdhpi_es.ts\
 | 
						|
             rdhpi_fr.ts\
 | 
						|
             rdhpi_nb.ts\
 | 
						|
             rdhpi_nn.ts\
 | 
						|
             rdhpi_pt_BR.ts
 | 
						|
 | 
						|
CLEANFILES = *~\
 | 
						|
             *.idb\
 | 
						|
             *.ilk\
 | 
						|
             *.lib\
 | 
						|
             *.obj\
 | 
						|
             *.pdb\
 | 
						|
             *.qm\
 | 
						|
             moc_*
 | 
						|
 | 
						|
DISTCLEAN = Makefile
 | 
						|
 | 
						|
MAINTAINERCLEANFILES = *~\
 | 
						|
                       Makefile\
 | 
						|
                       Makefile.in\
 | 
						|
                       moc_*
 |