-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
36 lines (32 loc) · 983 Bytes
/
makefile
File metadata and controls
36 lines (32 loc) · 983 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
#http://www.cs.colby.edu/maxwell/courses/tutorials/maketutor/
CC=gcc
CCFLAGS=-lm -lGL -lGLU -lglut
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
all: stb_image_aug.c image_helper.c image_DXT.c SOIL.c permutations.c bezier.c shapes.c drawing.c rubik.c
$(CC) -c stb_image_aug.c
$(CC) -c image_helper.c
$(CC) -c image_DXT.c
$(CC) -c SOIL.c
$(CC) -c permutations.c
$(CC) -c bezier.c
$(CC) -c shapes.c
$(CC) -c drawing.c
$(CC) -c rubik.c
$(CC) stb_image_aug.c image_helper.c image_DXT.c SOIL.c permutations.c bezier.c shapes.c drawing.c rubik.c -o rubik.out $(CCFLAGS)
soil: stb_image_aug.c image_helper.c image_DXT.c SOIL.c
$(CC) -c stb_image_aug.c
$(CC) -c image_helper.c
$(CC) -c image_DXT.c
$(CC) -c SOIL.c
permutations: permutations.c
$(CC) -c permutations.c
bezier: bezier.c
$(CC) -c bezier.c
shapes: shapes.c
$(CC) -c shapes.c
drawing: drawing.c
$(CC) -c drawing.c
rubik: rubik.c
$(CC) -c rubik.c