-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.am
70 lines (50 loc) · 2.08 KB
/
Makefile.am
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
AUTOMAKE_OPTIONS = subdir-objects
ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS}
AM_CPPFLAGS = ${CURL_CFLAGS} ${CPPUNIT_CFLAGS}
bin_PROGRAMS = camerastatus
camerastatus_LDADD = ${CURL_LIBS} ${CURSES_LIB}
camerastatus_SOURCES = src/camerastatus.cpp \
src/CursesView.cpp \
src/Box.cpp \
src/CursesColors.cpp \
src/NightRiderSlider.cpp \
src/News.cpp \
src/JobPanel.cpp \
src/FakeStatusModel.cpp \
src/HorizontalJobBar.cpp \
src/ClusterPanel.cpp \
src/StringUtil.cpp \
src/LoggedInUsersBar.cpp \
src/WorkflowsRunBar.cpp \
src/URLStatusModel.cpp
camerastatustest_SOURCES = test/camerastatustest.cpp \
test/StringUtilTest.cpp \
test/URLStatusModelTest.cpp \
src/CursesView.cpp \
src/Box.cpp \
src/CursesColors.cpp \
src/NightRiderSlider.cpp \
src/News.cpp \
src/JobPanel.cpp \
src/FakeStatusModel.cpp \
src/HorizontalJobBar.cpp \
src/ClusterPanel.cpp \
src/StringUtil.cpp \
src/LoggedInUsersBar.cpp \
src/WorkflowsRunBar.cpp \
src/URLStatusModel.cpp
man_MANS = doc/camerastatus.1
dist_noinst_SCRIPTS = autogen.sh
EXTRA_DIST = doc/camerastatus.1
check_PROGRAMS = camerastatustest
camerastatustest_CXXFLAGS = ${CPPUNIT_CFLAGS}
camerastatustest_LDADD = ${CPPUNIT_LIBS} ${CURL_LIBS} ${CURSES_LIB}
.PHONY: test
TESTS = camerastatustest
all-local:
@echo "This target all-local is part of all: target"
clean-local:
@echo "This clean-local target is called during clean target"
rm -f test/*.o
rm -f camerastatustest
test: check