1 SUBDIRS = editor resource test widget
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 \
10 libxuni_a_LIBADD = resource/*.o widget/*.o
12 bin_PROGRAMS = ../test ../editor
15 ___test_objects = test/main.o
17 ___test_objects = test/*.o
20 ___test_DEPENDENCIES = libxuni.a resource/*.o widget/*.o $(___test_objects)
21 ___test_LDADD = $(___test_objects) -L . -lxuni
24 ___editor_DEPENDENCIES = libxuni.a resource/*.o widget/*.o editor/*.o
25 ___editor_LDADD = editor/*.o -L . -lxuni