# # Simple makefile for simpleglx. This is all I need on Linux Slackware # 7.0 with an Nvidia GeForce/XFree4.0 setup. # # Chris Morgan Jun 17th 2000 # CFLAGS = -g LDLIBS = -lGL LDFLAGS = -L. -L/usr/lib -L/usr/X11R6/lib all: glxsimple clean: rm -f *.o *~ glxsimple glxsimple: glxsimple.c glxsimple.o $(CC) -o glxsimple glxsimple.o $(LDFLAGS) $(LDLIBS)