############################################################
# Makefile for raw x client
############################################################
# $Header$
############################################################

############################################################
# Defintions
############################################################
SRCS= icons.c \
		pager.c \
		realm.c \
		xbind.c \
		xevents.c \
		xicons.c \
		xinit.c \
		xmisc.c \
		xwindow.c

OBJS= icons.o \
		pager.o \
		realm.o \
		xbind.o \
		xevents.o \
		xicons.o \
		xinit.o \
		xmisc.o \
		xwindow.o
LOCALCFLAGS	= -Iinclude_x -Iicons

############################################################
# Rules
############################################################

all: xemp

xemp: $(OBJS) $(LIBS)
	$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) $(XLIBS) $(OTHERLIBS)

clean:
	rm -f $(OBJS) xemp

depend:
	$(DEPEND) $(CFLAGS) $(SRCS)

