#makefile for X_WINDOWS build of JLib.
# I have -O3 in the CFLAGS otherwise my inlined string functs don't work. YMMV

CC = gcc
# You might need to change -I<path> if X is installed somewhere funny...
CFLAGS  = -O3 -I/usr/local/x11r5/include
# You might need to change -lX to -lX11 (under linux I'm pretty sure)
LIBS = -lj -L/usr/local/x11r5/lib -lX
COPY = cp
LIBDIR = /usr/lib
DEL = rm -f

TARGET  = target/x/palette.o target/x/misc.o target/x/blit.o \
      target/generic/kb.o target/generic/mouse.o target/svgalib/uclock.o

include target/common

include target/clean.unx

