summaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: 5b3c9850317497a5b7b4f8a2496e0fbf060cdbea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
localedir = $(datadir)/locale
DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
AM_CFLAGS = -O3 -Wall -Wstrict-prototypes $(CFLAGS)
INCLUDES = -I. -I.. -I$(includedir) -I../include

bin_PROGRAMS = compilo simul linker

compilo_SOURCES = compilo.c
simul_SOURCES = simul.c
linker_SOURCES = linker.c

compilo_LDADD = ../lib/libCompilo.la
simul_LDADD = ../lib/libSimul.la
linker_LDADD = ../lib/libLinker.la