TARGET	= xpointer
SRCS	= $(TARGET).c
OBJS	= $(TARGET).o
INCS	= 
LIBS	= -lX11

LIBPATH	=
INCPATH	=


CC	= cc

DEPEND	= makedepend
RM	= rm
DEFINES	=
CFLAGS	= $(INCPATH) $(DEFINES)

$(TARGET):  $(OBJS)
	$(CC) $(CFLAGS) $(LIBPATH) -o $(TARGET) $(OBJS) $(LIBS)

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

clean:
	-$(RM) -f *~ *.o *.bak \#* core $(TARGET)
# DO NOT DELETE THIS LINE -- make depend depends on it.

hello.o: hello.c /usr/include/X11/Xlib.h /usr/include/sys/types.h
hello.o: /usr/include/X11/X.h /usr/include/X11/Xutil.h
