remove CFLAGS from linking - xml2tsv - a simple xml-to-tsv converter, based on xmlparser
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Tags
(DIR) README
(DIR) LICENSE
---
(DIR) commit 77a22b4fd5d8f6c9f64245788e5726de78f8c30e
(DIR) parent 921bd2cd5dda0f9d25343a445493a1ebee78868b
(HTM) Author: KatolaZ <katolaz@freaknet.org>
Date: Tue, 7 Jan 2020 15:58:34 +0000
remove CFLAGS from linking
Diffstat:
M Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/Makefile b/Makefile
@@ -19,7 +19,7 @@ options:
@echo "-+-+-+-+-+-+-+-+-+-+-"
xml2tsv: ${OBJ}
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJ)
+ $(CC) $(LDFLAGS) -o $@ $(OBJ)
${OBJ}: ${INC}