summaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: 9cee335882e715ce417916ddfcb5d7c595eac2b1 (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
## Makefile.am for PluggIt/src

AM_CPPFLAGS = -DDATADIR=\"@DATADIR@/\"

INCLUDES = @DFB_CFLAGS@
LDADD = @DFB_LIBS@ -lX11 -lXext -lXdamage

bin_PROGRAMS = pluggit

pluggit_SOURCES = \
	classes.cpp 

pluggit_LDADD = $(LDADD)

CLASSES = \
	Exception.cxx			\
	OutOfMemoryException.cxx	\
					\
	Clock.cxx			\
	FPS.cxx				\
	Options.cxx			\
	Random.cxx			\
	Updates.cxx			\
					\
	Runnable.cxx			\
	Thread.cxx			\
					\
	Scaler.cxx			\
					\
	View.cxx			\
	Source.cxx			\
	SourceX11.cxx			\
					\
	Main.cxx

classes.cpp: $(CLASSES) *.h Makefile gen_classes.sh main.c
	./gen_classes.sh $(CLASSES) > classes.cpp