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
parent
commit
6564c3c35f
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 4 deletions
  1. +6
    -4
      Makefile

+ 6
- 4
Makefile View File

@@ -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


Loading…
Cancel
Save