Minor syntactical changes for readability.
[xuni.git] / src / Makefile.am
blob47762a33acd1eb2d5379c5f0874aefe8062b4d43
1 SUBDIRS = editor resource test widget
3 LDADD = @SDL_LIBS@
4 AM_LDFLAGS = -rdynamic
5 AM_CFLAGS = @INITIAL_CFLAGS@ @CONFIG_CFLAGS@ @SDL_CFLAGS@
7 lib_LIBRARIES = libxuni.a
8 libxuni_a_SOURCES = 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 bin_PROGRAMS = ../test ../editor
13 ___test_SOURCES =
14 if DYNAMIC_HANDLERS
15 ___test_objects = test/main.o
16 else
17 ___test_objects = test/*.o
18 endif
20 ___test_DEPENDENCIES = libxuni.a resource/*.o widget/*.o $(___test_objects)
21 ___test_LDADD = $(___test_objects) -L . -lxuni
23 ___editor_SOURCES =
24 ___editor_DEPENDENCIES = libxuni.a resource/*.o widget/*.o editor/*.o
25 ___editor_LDADD = editor/*.o -L . -lxuni