Fred Gleason f77f95848e 2023-05-22 Fred Gleason <fredg@paravelsystems.com>
* Refactored the right-side of the 'Edit Event' dialog in
	rdlogmanager(1) to be fully resizeable.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
2023-05-22 16:00:43 -04:00

134 lines
5.7 KiB
Makefile

## Makefile.am
##
## (C) Copyright 2002-2023 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)\" -Wno-strict-aliasing -std=c++11 -fPIC -I$(top_srcdir)/lib @QT5_CFLAGS@ @MUSICBRAINZ_CFLAGS@ @IMAGEMAGICK_CFLAGS@
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:
../helpers/rdi18n_helper.sh --install rdlogmanager $(DESTDIR)$(prefix)/share/rivendell
uninstall-local:
../helpers/rdi18n_helper.sh --uninstall rdlogmanager $(DESTDIR)$(prefix)/share/rivendell
all:
../helpers/rdi18n_helper.sh --update rdlogmanager $(DESTDIR)$(prefix)/share/rivendell
bin_PROGRAMS = rdlogmanager
dist_rdlogmanager_SOURCES = add_clock.cpp add_clock.h\
add_event.cpp add_event.h\
clocklistmodel.cpp clocklistmodel.h\
clocklistview.cpp clocklistview.h\
commandline_ops.cpp globals.h\
edit_clock.cpp edit_clock.h\
edit_event.cpp edit_event.h\
edit_eventline.cpp edit_eventline.h\
edit_grid.cpp edit_grid.h\
edit_note.cpp edit_note.h\
edit_perms.cpp edit_perms.h\
edit_schedrules.cpp edit_schedrules.h\
edit_schedcoderules.cpp edit_schedcoderules.h\
edit_track.cpp edit_track.h\
eventlistmodel.cpp eventlistmodel.h\
eventwidget.cpp eventwidget.h\
generate_log.cpp generate_log.h\
importcartsmodel.cpp importcartsmodel.h\
importcartsview.cpp importcartsview.h\
importcartswidget.cpp importcartswidget.h\
librarytableview.cpp librarytableview.h\
list_clocks.cpp list_clocks.h\
list_events.cpp list_events.h\
list_grids.cpp list_grids.h\
list_svcs.cpp list_svcs.h\
logobject.cpp logobject.h\
pick_report_dates.cpp pick_report_dates.h\
rdlogmanager.cpp rdlogmanager.h\
rename_item.cpp rename_item.h\
schedrulesmodel.cpp schedrulesmodel.h\
svc_rec.cpp svc_rec.h\
svc_rec_dialog.cpp svc_rec_dialog.h\
viewreportdialog.cpp viewreportdialog.h
nodist_rdlogmanager_SOURCES = moc_add_clock.cpp\
moc_add_event.cpp\
moc_clocklistmodel.cpp\
moc_clocklistview.cpp\
moc_edit_clock.cpp\
moc_edit_event.cpp\
moc_edit_eventline.cpp\
moc_edit_grid.cpp\
moc_edit_note.cpp\
moc_edit_perms.cpp\
moc_edit_schedrules.cpp\
moc_edit_schedcoderules.cpp\
moc_edit_track.cpp\
moc_eventlistmodel.cpp\
moc_eventwidget.cpp\
moc_generate_log.cpp\
moc_importcartsmodel.cpp\
moc_importcartsview.cpp\
moc_importcartswidget.cpp\
moc_librarytableview.cpp\
moc_list_clocks.cpp\
moc_list_events.cpp\
moc_list_grids.cpp\
moc_list_svcs.cpp\
moc_logobject.cpp\
moc_pick_report_dates.cpp\
moc_rdlogmanager.cpp\
moc_rename_item.cpp\
moc_schedrulesmodel.cpp\
moc_svc_rec.cpp\
moc_svc_rec_dialog.cpp\
moc_viewreportdialog.cpp
rdlogmanager_LDADD = @LIB_RDLIBS@ @LIBVORBIS@ @QT5_LIBS@ @MUSICBRAINZ_LIBS@ @IMAGEMAGICK_LIBS@
EXTRA_DIST = rdlogmanager.pro\
rdlogmanager_cs.ts\
rdlogmanager_de.ts\
rdlogmanager_es.ts\
rdlogmanager_fr.ts\
rdlogmanager_nb.ts\
rdlogmanager_nn.ts\
rdlogmanager_pt_BR.ts
CLEANFILES = *~\
*.exe\
*.idb\
*ilk\
*.qm\
*.obj\
*.pdb\
moc_*
MAINTAINERCLEANFILES = *~\
*.tar.gz\
aclocal.m4\
configure\
Makefile.in\
moc_*