File: Makefile.am

package info (click to toggle)
screem 0.2.1-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 3,748 kB
  • ctags: 2,270
  • sloc: ansic: 26,366; sh: 7,453; makefile: 512; sed: 93; perl: 18
file content (71 lines) | stat: -rw-r--r-- 1,340 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
INCLUDES        =       -I../../include -I../../pixmaps \
                        -DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
                        $(GNOME_INCLUDEDIR) \
			-D _GNU_SOURCE

plugins_execdir	=	$(libdir)/screem/plugins

plugins_exec_LTLIBRARIES = uploadWizard.la

if HAVE_SNPRINTF
SNPRINTF_SRC =
else
SNPRINTF_SRC =  snprintf.c \
		snprintf.h
endif

if HAVE_STRCASECMP
STRCASECMP_SRC =
else
STRCASECMP_SRC = strcasecmp.c
endif

if HAVE_FNMATCH
FNMATCH_SRC =
else
FNMATCH_SRC = fnmatch.c fnmatch.h 
endif

# here so they get included in a make dist as otherwise they will be missed
# out when I do it

EXTRA_DIST =  snprintf.c snprintf.h \
	      strcasecmp.c \
	      fnmatch.c fnmatch.h

uploadWizard_la_SOURCES = base64.c \
			base64.h \
			basename.c \
			basename.h \
			common.c \
			common.h \
			dirname.c \
			dirname.h \
			frontend.h \
			ftp.c \
			ftp.h \
			httpdav.c \
			httpdav.h \
			linelen.c \
			md5.c \
			md5.h \
			netrc.c \
			netrc.h \
			protocol.h \
			rcfile.c \
			rcfile.h \
			rpmatch.c \
			sites.c \
			sites.h \
			socket.c \
			socket.h \
			strsplit.c \
			strsplit.h \
			uploadWizard.c \
			uploadWizard.h \
			$(SNPRINTF_SRC) \
			$(STRCASECMP_SRC) \
			$(FNMATCH_SRC)

uploadWizard_la_LDFLAGS = -avoid-version -module
uploadWizard_la_LIBADD =  $(GNOME_LIBDIR) $(GNOMEUI_LIBS) -lpthread