1#include "Makefile.top"
2
3/* Please configure */
4#define have_mit_screensaver 1
5#define have_xinerama 0
6#define have_xidle 0
7/* Configuration done (hopefull) */
8
9#if have_mit_screensaver
10  /* If you have MIT-SCREEN-SAVER extention */
11  SD=-DHAVE_MIT_SCREENSAVER
12  SL=$(XSSLIB)
13 DSL=$(DEPXSSLIB)
14#endif
15
16#if have_xinerama
17  /* If you have Xinerama */
18 XID=-DHAVE_XINERAMA
19 XIL=$(XINERAMALIB)
20DXIL=$(DEPXINERAMALIB)
21#endif
22
23#if have_xidle
24  /* If you have Xidle (fill in IL and DIL yourself) */
25  ID=-DHAVE_XIDLE
26  IL=
27 DIL=
28#endif
29
30
31LOCAL_LIBRARIES = $(SL) $(IL) $(XLIB)
32DEPLIBS =  $(DSL) $(IDL) $(DEPXLIB)
33DEFINES = $(SD) $(ID)
34
35ComplexProgramTarget(x2vnc)
36
37DependTarget()
38
39#include "Makefile.bottom"
40