forked from pxscene/pxCore2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.glut
More file actions
executable file
·47 lines (27 loc) · 794 Bytes
/
Makefile.glut
File metadata and controls
executable file
·47 lines (27 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# pxCore Copyright 2007-2015 John Robinson
# Portable Framebuffer and Windowing Library
# glut
CFLAGS= -DPX_PLATFORM_GLUT -fPIC
OUTDIR=build/x11
all: lib examples
clean:
rm -rf *.o; rm -rf src/*.o; rm -rf build
lib:
cd src; make -f Makefile.glut
examples: Simple Mandelbrot Animation KeyboardAndMouse Timer Hover Sprite
Simple:
cd examples/Simple; make -f Makefile.glut
NativeDrawing:
cd examples/NativeDrawing; make -f Makefile.glut
Mandelbrot:
cd examples/Mandelbrot; make -f Makefile.glut
Animation:
cd examples/Animation; make -f Makefile.glut
KeyboardAndMouse:
cd examples/KeyboardAndMouse; make -f Makefile.glut
Timer:
cd examples/Timer; make -f Makefile.glut
Hover:
cd examples/Hover; make -f Makefile.glut
Sprite:
cd examples/Sprite; make -f Makefile.glut