mirror of
https://github.com/bronson-g/pulsar.git
synced 2025-12-23 14:08:34 -05:00
11 lines
359 B
Makefile
11 lines
359 B
Makefile
INCLUDES = -F/System/Library/Frameworks -framework OpenGL -framework GLUT -lm
|
|
LINUXINCLUDES = -g -Wall -F/System/Library/Frameworks -lGL -lGLU -lm -lglut
|
|
|
|
a3: a4.c graphics.c visible.c graphics.h
|
|
gcc a4.c graphics.c visible.c -o a4 $(INCLUDES)
|
|
|
|
linux: a4.c graphics.c visible.c graphics.h
|
|
gcc a4.c graphics.c visible.c -o a4 $(LINUXINCLUDES)
|
|
clean:
|
|
rm a4
|