File: Makefile.am

package info (click to toggle)
xcopilot 1%3A0.6.6
  • links: PTS
  • area: contrib
  • in suites: potato, slink
  • size: 3,252 kB
  • ctags: 3,406
  • sloc: ansic: 37,932; cpp: 1,918; sh: 329; makefile: 68
file content (17 lines) | stat: -rw-r--r-- 593 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
noinst_LIBRARIES = libmx.a
libmx_a_SOURCES = alert.c buttons.c menu.c select.c basic.c filesel.c request.c libmx.h
BUILT_SOURCES = libmx.h
EXTRA_DIST = alert.h buttons.h request.h basic.h filesel.h menu.h select.h

libmx.h: basic.h alert.h menu.h request.h select.h buttons.h filesel.h
	cat $? > $@

test_menu_SOURCES = test_menu.c
test_menu_LDADD = ${X_LIBS} libmx.a ${X_PRE_LIBS} -lX11 ${X_EXTRA_LIBS}

test_filesel_SOURCES = test_filesel.c
test_filesel_LDADD = ${X_LIBS} libmx.a ${X_PRE_LIBS} -lX11 ${X_EXTRA_LIBS}

noinst_PROGRAMS = test_menu test_filesel

#TESTS = test_menu test_filesel