~profzoom/ubuntu/quantal/wmaker/bug-1079925

« back to all changes in this revision

Viewing changes to WINGs/Extras/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Marcelo E. Magallon
  • Date: 2004-11-10 14:05:30 UTC
  • Revision ID: james.westby@ubuntu.com-20041110140530-qpd66b5lm38x7apk
Tags: upstream-0.91.0
ImportĀ upstreamĀ versionĀ 0.91.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## automake input file for WINGs
 
2
 
 
3
AUTOMAKE_OPTIONS = no-dependencies
 
4
 
 
5
 
 
6
 
 
7
# is this a kluge? if so, how should i do it?
 
8
includedir = @includedir@/WINGs
 
9
 
 
10
include_HEADERS = wtableview.h wtabledelegates.h 
 
11
 
 
12
 
 
13
lib_LIBRARIES = libExtraWINGs.a 
 
14
 
 
15
noinst_PROGRAMS = test
 
16
 
 
17
EXTRA_DIST = 
 
18
 
 
19
libExtraWINGs_a_SOURCES =       \
 
20
        wtableview.c \
 
21
        wtabledelegates.c \
 
22
        wtableview.h \
 
23
        wtabledelegates.h 
 
24
 
 
25
AM_CFLAGS = @NOSTRICTALIASING@
 
26
 
 
27
INCLUDES = -I$(top_srcdir)/wrlib -I$(top_srcdir)/WINGs \
 
28
        -DRESOURCE_PATH=\"$(datadir)/WINGs\" @HEADER_SEARCH_PATH@ -DDEBUG
 
29
 
 
30
LDADD= $(top_builddir)/WINGs/libWINGs.a $(top_builddir)/wrlib/libwraster.la \
 
31
        @XFTLIBS@ @INTLIBS@
 
32
 
 
33
test_LDADD = wtableview.o wtabledelegates.o $(LDADD)
 
34