Skip to content
This repository was archived by the owner on Aug 19, 2021. It is now read-only.

Commit dcb356a

Browse files
committed
Cleaned up makefile
1 parent ba0c701 commit dcb356a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ DEP := $(SRC:.c=.d)
1010
ASM := $(SRC:.c=.s)
1111

1212
ifdef DEBUG
13-
CFLAGS += -O0 -g3 -DMU_DEBUG
14-
CFLAGS += -fkeep-inline-functions
13+
CFLAGS += -O0 -g3
1514
else
1615
CFLAGS += -O2
1716
endif
@@ -20,7 +19,7 @@ CFLAGS += -m$(WORD)
2019
endif
2120
CFLAGS += -I.
2221
CFLAGS += -std=c99
23-
CFLAGS += -Wall -Winline
22+
CFLAGS += -Wall
2423
CFLAGS += -D_XOPEN_SOURCE=500
2524

2625
LFLAGS += -lpthread

0 commit comments

Comments
 (0)