summaryrefslogtreecommitdiffstats
path: root/src/electronics/components/Makefile.am
blob: 91336ae4fc39556d7462eeb737c3ab9f25f35b48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
CXXFLAGS += $(GPSIM_CXXFLAGS)

INCLUDES = -I$(top_srcdir)/src \
	-I$(top_srcdir)/src/electronics -I$(top_srcdir)/src/electronics/components \
	-I$(top_srcdir)/src/electronics/simulation -I$(top_srcdir)/src/gui -I$(top_srcdir)/src/languages \
	-I$(top_srcdir)/src/micro $(glib_cflags) $(all_includes)

METASOURCES = AUTO
noinst_HEADERS = ecresistor.h ecled.h ecdiode.h ecsevensegment.h eckeypad.h \
	eccapacitor.h ec555.h eccurrentsource.h ecfixedvoltage.h ecbcdto7segment.h \
	ecsignallamp.h ecclockinput.h ecpotentiometer.h ecopamp.h ecvoltagesource.h \
	eccurrentsignal.h ecvoltagesignal.h ecground.h multiinputgate.h fulladder.h multiplexer.h \
	demultiplexer.h externalconnection.h ecsubcircuit.h meter.h probe.h resistordip.h \
	addac.h dependentsource.h flipflop.h toggleswitch.h pushswitch.h ram.h \
	discretelogic.h piccomponent.h piccomponentpin.h binarycounter.h bidirled.h \
	matrixdisplay.h bussplitter.h matrixdisplaydriver.h magnitudecomparator.h \
	serialportcomponent.h parallelportcomponent.h inductor.h ecbjt.h rotoswitch.h

noinst_LTLIBRARIES =  libcomponents.la
libcomponents_la_SOURCES = ecresistor.cpp ecled.cpp ecdiode.cpp \
	ecsevensegment.cpp eckeypad.cpp eccapacitor.cpp ec555.cpp eccurrentsource.cpp \
	ecfixedvoltage.cpp ecbcdto7segment.cpp ecsignallamp.cpp ecclockinput.cpp \
	ecpotentiometer.cpp ecopamp.cpp ecvoltagesource.cpp eccurrentsignal.cpp ecvoltagesignal.cpp \
	ecground.cpp multiinputgate.cpp fulladder.cpp multiplexer.cpp demultiplexer.cpp \
	externalconnection.cpp ecsubcircuit.cpp meter.cpp probe.cpp resistordip.cpp addac.cpp \
	dependentsource.cpp flipflop.cpp toggleswitch.cpp pushswitch.cpp ram.cpp discretelogic.cpp \
	piccomponent.cpp piccomponentpin.cpp binarycounter.cpp bidirled.cpp matrixdisplay.cpp \
	bussplitter.cpp matrixdisplaydriver.cpp magnitudecomparator.cpp serialportcomponent.cpp \
	parallelportcomponent.cpp inductor.cpp ecbjt.cpp rotoswitch.cpp

libcomponents_la_PCH = AUTO


libcomponents_la_LIBADD =\
	$(top_builddir)/src/electronics/simulation/libelements.la