blob: 44e89fae6efdf64e8652075cef2908048c49eb16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/src/electronics \
-I$(top_srcdir)/src/electronics/components -I$(top_srcdir)/src/gui -I$(top_srcdir)/src/languages \
-I$(top_srcdir)/src/micro $(all_includes)
METASOURCES = AUTO
noinst_LTLIBRARIES = libflowparts.la
noinst_HEADERS = callsub.h delay.h end.h forloop.h readport.h setpin.h start.h \
testpin.h unary.h varassignment.h varcomparison.h writeport.h repeat.h while.h \
sub.h inputbutton.h flowpart.h pinmapping.h
libflowparts_la_SOURCES = callsub.cpp delay.cpp end.cpp forloop.cpp \
readport.cpp setpin.cpp start.cpp testpin.cpp unary.cpp varassignment.cpp \
varcomparison.cpp writeport.cpp repeat.cpp while.cpp sub.cpp count.cpp embed.cpp \
interrupt.cpp keypad.cpp pulse.cpp sevenseg.cpp inputbutton.cpp flowpart.cpp \
pinmapping.cpp
libflowparts_la_PCH = AUTO
|