Added Make rules for XSPICE CM-libraries

This commit is contained in:
Vadim Kuznetzov 2016-01-29 20:23:47 +03:00
parent 1ffc4a12b5
commit 68c0cbf225
6 changed files with 84 additions and 0 deletions

View File

@ -834,6 +834,7 @@ AC_CONFIG_FILES([Makefile
qucs/spicecomponents/Makefile
qucs/diagrams/Makefile
qucs/extsimkernels/Makefile
qucs/extsimkernels/xspice/Makefile
qucs/paintings/Makefile
qucs/dialogs/Makefile
translations/Makefile])

View File

@ -44,3 +44,5 @@ QT4_WRAP_CPP( EXTSIMKERNELS_MOC_SRCS ${EXTSIMKERNELS_MOC_HDRS} )
ADD_LIBRARY(extsimkernels ${EXTSIMKERNELS_HDRS} ${EXTSIMKERNELS_SRCS} ${EXTSIMKERNELS_MOC_SRCS})
ADD_SUBDIRECTORY( xspice )

View File

@ -22,6 +22,8 @@
# Boston, MA 02110-1301, USA.
#
SUBDIRS=xspice
noinst_LIBRARIES = libextsimkernels.a
MOCHEADERS = \

View File

@ -0,0 +1,8 @@
SET(RULES_MK
cmlib.linux.rules.mk
)
# installation of transmission lines
INSTALL( FILES ${RULES_MK} DESTINATION share/qucs/xspice_cmlib )

View File

@ -0,0 +1,34 @@
## Process this file with automake to produce Makefile.in
#
# qucs/extsimkernels/xspice/Makefile.am
#
# Automake input file.
#
# Copyright (C) 2015 Vadim Kuznetsov <ra3xdh@gmail.com>
#
# 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.
#
RULES_MK = cmlib.linux.rules.mk
EXTRA_DIST = $(RULES_MK)
# installation of transmission lines
xspicerulesdir = ${prefix}/share/qucs/tline
xspicerules_DATA = $(EXTRA_DIST)
CLEANFILES = *~
MAINTAINERCLEANFILES = Makefile.in

View File

@ -0,0 +1,37 @@
.SUFFIXES:
CMPP=cmpp
CC=gcc
CFLAGS=-O2 -Wall -Wextra -Wmissing-prototypes -Wstrict-prototypes -Wnested-externs -Wold-style-definition -Wredundant-decls -Wconversion -s -fPIC
INCLUDE=-I. -I/usr/share/ngspice/include/
LD=gcc
LDFLAGS=-shared
HEADERS=cmextrn.h cminfo.h udnextrn.h udninfo.h
all: $(TARGET)
$(TARGET) : $(HEADERS) $(OBJECTS)
$(LD) $(LDFLAGS) -o $(TARGET) $(OBJECTS)
$(HEADERS): modpath.lst udnpath.lst
$(CMPP) -lst
%.o : %.c
$(CC) $(INCLUDE) $(CFLAGS) -c $< -o $@
%/ifspec.c: %/ifspec.ifs
CMPP_IDIR=$(@D) CMPP_ODIR=$(@D) $(CMPP) -ifs
%/cfunc.c: %/cfunc.mod
CMPP_IDIR=$(@D) CMPP_ODIR=$(@D) $(CMPP) -mod
clean:
rm gainmike/cfunc.c gainmike/ifspec.c res/cfunc.c res/ifspec.c *.h
rm *.o *.cm
rm gainmike/*.o
rm res/*.o