You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
536 B
23 lines
536 B
Respect CC, append to CFLAGS (but not -g), append to LDFLAGS, use system LD -jer
|
|
|
|
--- Makefile.orig 1999-07-15 19:40:12.000000000 +0200
|
|
+++ Makefile 2009-09-04 15:27:15.000000000 +0200
|
|
@@ -8,14 +8,13 @@
|
|
|
|
HDRS = defs.h mstring.h
|
|
|
|
-CFLAGS = -g -Wall -Wstrict-prototypes -Wmissing-prototypes
|
|
+CFLAGS += -Wall -Wstrict-prototypes -Wmissing-prototypes
|
|
|
|
-LDFLAGS = -static
|
|
+LDFLAGS += -static
|
|
|
|
LIBS =
|
|
|
|
-CC = gcc
|
|
-LINKER = gcc
|
|
+LINKER = $(CC)
|
|
# LINKER = cl
|
|
# CC = cl
|
|
|