You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
18 lines
296 B
18 lines
296 B
# |
|
# Quick and dirty makefile to build on Linux |
|
# tested on Ubuntu 14.04.1 32bit |
|
# |
|
|
|
SRC = main.cpp ../../imgui.cpp |
|
|
|
OBJ = $(SRC:.cpp=.o) |
|
|
|
CXXFLAGS = -I../../ `pkg-config --cflags glfw3` |
|
|
|
LIBS = `pkg-config --static --libs glfw3` -lGLEW |
|
|
|
all: $(OBJ) |
|
$(CXX) $(OBJ) $(LIBS) |
|
|
|
clean: |
|
$(RM) -f $(OBJ)
|
|
|