blob: 3aac85777ab2339330be255e089fc56a7d854878 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
include $(top_srcdir)/common.am
if PCH
AM_CXXFLAGS += -include $(top_srcdir)/all.h
endif
noinst_LIBRARIES = libctrl.a
dist_libctrl_a_SOURCES = \
ctrledit.cpp ctrledit.h \
ctrlcanvas.cpp ctrlcanvas.h \
ctrlpanel.cpp ctrlpanel.h
nodist_libctrl_a_SOURCES = \
moc_ctrledit.cpp \
moc_ctrlcanvas.cpp \
moc_ctrlpanel.cpp
|