summaryrefslogtreecommitdiff
path: root/aoview/Makefile.am
blob: 9f67ac40225d1b0e82d287ea47970817a914e1f3 (plain) (blame)
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
VERSION=$(shell git describe)
AM_CFLAGS=$(AOVIEW_CFLAGS) -I$(top_srcdir)/src -DAOVIEW_VERSION=\"$(VERSION)\"

bin_PROGRAMS=aoview

aoview_LDADD=$(AOVIEW_LIBS)

aoview_SOURCES = \
	aoview_main.c \
	aoview_dev.c \
	aoview_dev_dialog.c \
	aoview_serial.c \
	aoview_monitor.c \
	aoview_state.c \
	aoview_convert.c \
	aoview_log.c \
	aoview_table.c \
	aoview_util.c \
	aoview_file.c \
	aoview_eeprom.c \
	aoview.h

BUILT_SOURCES = aoview_glade.h

CLEANFILES = aoview_glade.h

aoview_glade.h: aoview.glade
	sed -e 's/"/\\"/g' -e 's/^/"/' -e 's/$$/"/' $< > $@