mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00

- add SUFFIXES for .h->.moc.cpp rule - add various _HEADERS - distribute qucs.qrc - add several qrc files - add more filter headers - sort out qm rule - add translation files to dist
84 lines
1.9 KiB
Makefile
84 lines
1.9 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
#
|
|
# qucs-filter/Makefile.am
|
|
#
|
|
# Automake input file.
|
|
#
|
|
# Copyright (C) 2004, 2006 Stefan Jahn <stefan@lkcc.org>
|
|
#
|
|
# This is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2, or (at your option)
|
|
# any later version.
|
|
#
|
|
# This software 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 package; see the file COPYING. If not, write to
|
|
# the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
|
|
# Boston, MA 02110-1301, USA.
|
|
#
|
|
|
|
bin_PROGRAMS = qucsfilter
|
|
|
|
dist_man_MANS = qucsfilter.1
|
|
|
|
MOCHEADERS = qucsfilter.h helpdialog.h
|
|
MOCFILES = $(MOCHEADERS:.h=.moc.cpp)
|
|
|
|
qucsfilter_SOURCES = \
|
|
eqn_filter.cpp \
|
|
filter.cpp \
|
|
helpdialog.cpp \
|
|
lc_filter.cpp \
|
|
line_filter.cpp \
|
|
qf_cauer.cpp \
|
|
qf_filter.cpp \
|
|
qucsfilter.cpp \
|
|
stepz_filter.cpp \
|
|
tl_filter.cpp \
|
|
cline_filter.cpp \
|
|
main.cpp \
|
|
qf_poly.cpp \
|
|
quarterwave_filter.cpp \
|
|
qrc_qucsfilter.cpp
|
|
|
|
qrc_qucsfilter.cpp: qucsfilter.qrc
|
|
$(RCC) -o $@ $<
|
|
|
|
EXTRA_DIST = qucsfilter.qrc
|
|
|
|
nodist_qucsfilter_SOURCES = $(MOCFILES)
|
|
|
|
AM_CPPFLAGS = $(X11_INCLUDES) $(QT_INCLUDES)
|
|
qucsfilter_LDFLAGS = $(X11_LDFLAGS) $(QT_LDFLAGS)
|
|
qucsfilter_LDADD = $(X11_LIBS) $(QT_LIBS)
|
|
|
|
noinst_HEADERS = \
|
|
$(MOCHEADERS) \
|
|
eqn_filter.h \
|
|
lc_filter.h \
|
|
qf_poly.h \
|
|
qf_filter.h \
|
|
qf_cauer.h \
|
|
quarterwave_filter.h \
|
|
qf_matrix.h \
|
|
line_filter.h \
|
|
filter.h \
|
|
stepz_filter.h \
|
|
tl_filter.h \
|
|
material_props.h \
|
|
cline_filter.h
|
|
|
|
SUFFIXES = .moc.cpp
|
|
|
|
.h.moc.cpp:
|
|
$(MOC) -o $@ $<
|
|
|
|
CLEANFILES = *~
|
|
MAINTAINERCLEANFILES = Makefile.in *.moc.cpp
|
|
DISTCLEANFILES = *.moc.cpp
|