Skip to content

Commit d937318

Browse files
committed
multiple minor improvements
1 parent 4bce6ed commit d937318

File tree

3 files changed

+133
-107
lines changed

3 files changed

+133
-107
lines changed

src/.astylerc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,8 @@
6262
# Paddings around operators, parentheses, and a header
6363
# (header means `if`, `while`, etc. Example: `if (true)`, instead of `if(true)`)
6464
--pad-oper
65-
--pad-paren-in
6665
--pad-header
6766

68-
# and remove all not requested padding
69-
--unpad-paren
70-
7167
# doesn't seem to preserve any lines, will just remove any empty lines!
7268
# --delete-empty-lines
7369

src/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CC ?= gcc
2-
DEBUG ?= -ggdb -O0 -march=native
2+
DEBUG := -ggdb -O0 -march=native
33
OUTPUT := -MMD -MP
44

55
# Include Directories
@@ -49,7 +49,7 @@ $(BIN): $(OBJ)
4949

5050
install: all
5151
install -d $(BINDIR)
52-
install tldr $(BINDIR)
52+
install $(BIN) $(BINDIR)
5353

5454
clean:
5555
rm -rf $(OBJ) *~ $(BINS) $(DSYM) $(DEP) $(BIN)

0 commit comments

Comments
 (0)