This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add name of the program as target | |
TARGET = out | |
CC = cc | |
# Add libs | |
LIBS = -lm | |
CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os | |
OBJS = $(patsubst %.c, %.o, $(wildcard *.c)) | |
INCS = $(wildcard *.h) | |
all : options ${TARGET} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add name of the program as target | |
TARGET = out | |
CXX = g++ | |
# Add libs | |
LIBS = -lm | |
CPPFLAGS = -std=c++17 -pedantic -Wall -Wno-deprecated-declarations -Os | |
OBJS = $(patsubst %.cpp, %.o, $(wildcard *.cpp)) | |
INCS = $(wildcard *.h) | |
all : options ${TARGET} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[solarized-dark] | |
main_fg = fdf6e3 | |
active_control_fg = fdf6e3 | |
secondary_fg = eee8d5 | |
secondary_bg = 073642 | |
main_bg = 002b36 | |
sidebar_and_player_bg = 002b36 | |
cover_overlay_and_shadow = 000000 | |
indicator_fg_and_button_bg = 2aa198 | |
pressing_fg = FF5C86 |
NewerOlder