Guest User

Untitled

a guest
Jan 26th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.20 KB | None | 0 0
  1. CC = g++
  2. CFLAGS = -O2 `pkg-config --cflags gl`
  3. LIB = `pkg-config --libs gl` -lglut -lGLU
  4. square: main.o
  5.     $(CC) $(CFLAGS) $(LIB) main.o -o square
  6. main.o: main.cpp
  7.     $(CC) $(CFLAGS) $(LIB) -c main.cpp
Add Comment
Please, Sign In to add comment