opengl
This commit is contained in:
13
glfw/Makefile
Normal file
13
glfw/Makefile
Normal file
@ -0,0 +1,13 @@
|
||||
CC=g++
|
||||
CFLAGS= -Wall
|
||||
|
||||
LDLIBS = -lglfw
|
||||
|
||||
TARGET := test
|
||||
|
||||
build:
|
||||
$(CC) $(LDLIBS) src/*.c src/*.cpp -o $(TARGET)
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm -rf $(BUILD_DIR)
|
Reference in New Issue
Block a user