summaryrefslogtreecommitdiff
path: root/Makefile.am
blob: 2bc9a5441a629dee9a0e8e04dd8cccea5154295d (plain)
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
SUBDIRS = pixmaps\
		  icons\
		  ${PLUGINS_DIRS}

bin_PROGRAMS = deadbeef

deadbeef_SOURCES =\
	main.c common.h deadbeef.h\
	plugins.c plugins.h moduleconf.h\
	playlist.c playlist.h \
	streamer.c streamer.h\
	messagepump.c messagepump.h\
	conf.c  conf.h\
	playback.h\
	threading_pthread.c threading.h\
	volume.c volume.h\
	session.h session.c \
	junklib.h junklib.c utf8.c utf8.h\
	optmath.h\
	vfs.c vfs.h vfs_stdio.c\
	timeline.c timeline.h\
	md5/md5.c md5/md5.h\
	metacache.c

sdkdir = $(pkgincludedir)
sdk_HEADERS = deadbeef.h

#deadbeef_LDADD = $(LDADD) $(DEPS_LIBS) $(ICONV_LIB) -lstdc++ -lm
deadbeef_LDADD = $(LDADD) $(DEPS_LIBS) $(ICONV_LIB) -lm

AM_CFLAGS = $(DEPS_CFLAGS) -std=c99
AM_CPPFLAGS = $(DEPS_CFLAGS)

docsdir = $(docdir)

docs_DATA = README COPYING.GPLv2 help.txt about.txt ChangeLog COPYING.LGPLv2.1

desktopdir = $(datadir)/applications
desktop_DATA = deadbeef.desktop

EXTRA_DIST = $(docs_DATA) $(desktop_DATA)