## Make functionality has been replaced by DEFSYSTEM (in 'make.lisp'),
## this file is now minimal.
## NOTE: Some parameters in 'xlib-and-gl.system' have to be changed!

### lisp executable
LISP = lisp

all:
	$(LISP) -eval \
	'(progn (compile-file "xlib-and-gl.system") (load "xlib-and-gl") \
	(make:compile-system :gl) (make:compile-system :xlib) \
	(make:compile-system :glx-examples) \
	(make:compile-system :glut-examples) \
	(quit))'

clean:
	$(LISP) -load xlib-and-gl.system -eval \
	'(progn (make:clean-system :gl) (make:clean-system :xlib) \
	(make:clean-system :glx-examples) \
	(make:clean-system :glut-examples) (quit))'
	rm -f *~
