1# I've seen window managers which couldn't handle aspect ratio hints.
2# Uncomment if you have resize problems.
3#XVIER_ASPECT	= -DXVIER_WM_ASPECT_BUG
4
5# Some systems don't provide FD_SET #define's. HP 9000 and IBM RS6000
6# are handled in xvier.h, but on other systems you can uncomment this.
7#NO_FD_SET = -DNO_FD_SET
8
9# If "select" is missing, but you have "poll", try this:
10#NO_SELECT = -DNO_SELECT
11
12# And if "getdtablesize" is missing, use the following:
13#NO_GETDTABSIZE = -DNO_GETDTABSIZE
14
15#PROGNAME	= $(LIBDIR)$(PATHSEP)xvier_prog
16PROGNAME	= $(PREFIX)/libexec/xvier_prog
17DEFINES		= $(XVIER_ASPECT) $(NO_FD_SET) $(NO_SELECT) \
18			$(NO_GETDTABSIZE) -DPROGNAME=\"$(PROGNAME)\"
19
20PROGRAMS	= xvier xvier_prog
21
22SRCS1		= xvier.c
23OBJS1		= xvier.o
24SRCS2		= vierinit.c vier.c
25OBJS2		= vierinit.o vier.o
26
27ComplexProgramTarget_1(xvier, $(XLIB), /**/)
28NormalProgramTarget(xvier_prog, $(OBJS2), /**/, /**/, /**/)
29
30InstallProgram(xvier_prog, $(PROGNAME))
31