=== Overview ===
[xuni.git] / src / Makefile.am
blob619e8c7a4108c18fc2bb74aecee60b5a30f39fe0
1 SUBDIRS = editor resource test widget
3 LDADD = @SDL_LIBS@
4 AM_LDFLAGS = -rdynamic
5 AM_CFLAGS = @INITIAL_CFLAGS@ @SDL_CFLAGS@
7 lib_LIBRARIES = libxuni.a
8 libxuni_a_SOURCES = calc.y error.c graphics.c gui.c loadso.c loop.c memory.c \
9     utility.c xuni.c
10 libxuni_a_LIBADD = resource/*.o widget/*.o
12 BUILT_SOURCES = calc.c
13 calc.c: calc.y
14         $(YACC) --output-file=calc.c calc.y
16 bin_PROGRAMS = ../test ../editor
17 ___test_SOURCES =
18 ___test_DEPENDENCIES = libxuni.a
19 ___test_LDADD = test/*.o -L . -lxuni
20 ___editor_SOURCES =
21 ___editor_DEPENDENCIES = libxuni.a
22 ___editor_LDADD = editor/*.o -L . -lxuni