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