blob: 20c7ab2545d04a01214bf60c64d8783bae6fe648 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
localedir = $(datadir)/locale
DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
AM_CFLAGS = -O3 -Wall -Wstrict-prototypes $(CFLAGS)
AM_CXXFLAGS = -O3 -Wall -Wstrict-prototypes $(CXXFLAGS)
INCLUDES = -I. -I.. -I$(includedir) -I../include
bin_PROGRAMS = Baltisot
Baltisot_SOURCES = Main.cc
LDADD = ../lib/libBaltisot.la
Baltisot_LDADD = $(LDADD)
|