Browse Source
Refactor Makefile for compiler flags and includes
Updated compiler flags and include paths in Makefile.
pull/79/head
András Szabó
GitHub
4 weeks ago
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
6 additions and
4 deletions
-
Makefile
|
|
|
@@ -1,10 +1,12 @@ |
|
|
|
RACK_DIR ?= ../.. |
|
|
|
|
|
|
|
FLAGS += -Idep/include |
|
|
|
CFLAGS += |
|
|
|
CXXFLAGS += |
|
|
|
# Essential compiler flags |
|
|
|
CXXFLAGS += -std=c++17 -Wall -Wextra -Wno-unused-parameter |
|
|
|
|
|
|
|
LDFLAGS += |
|
|
|
# Include paths |
|
|
|
FLAGS += -I$(RACK_DIR)/include -Idep/include |
|
|
|
|
|
|
|
# Source files |
|
|
|
SOURCES += src/Prototype.cpp |
|
|
|
|
|
|
|
DISTRIBUTABLES += res examples |
|
|
|
|