diff options
| author | Daniel Cerqueira <dan.git@lispclub.com> | 2026-08-18 11:59:36 +0100 |
|---|---|---|
| committer | Daniel Cerqueira <dan.git@lispclub.com> | 2026-08-18 16:11:31 +0100 |
| commit | 738e53849d39db2cba7c7fd97dd74a64bcafe363 (patch) | |
| tree | bbbae86081b88956c2941796f00ab2699da8c60f /Makefile | |
| parent | b2db65a84bd8b9d802cd8323fa3fa82aab4d5782 (diff) | |
use readlinev.0.3.0
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -47,22 +47,25 @@ PREFIX ?= /usr/local .PHONY: native native: CPPFLAGS += -DNDEBUG native: CFLAGS += -O2 +native: LDFLAGS += -lreadline native: $(PROGRAM) .PHONY: generic generic: CPPFLAGS += -DNDEBUG generic: CFLAGS += -mtune=generic -O2 +generic: LDFLAGS += -lreadline generic: $(PROGRAM) .PHONY: all all: CPPFLAGS += -DNDEBUG all: CFLAGS += -O2 +all: LDFLAGS += -lreadline all: $(PROGRAM) $(LIB) $(HTML) .PHONY: debug debug: CPPFLAGS += -DDEBUG debug: CFLAGS += -O0 -g -debug: LDFLAGS += -g +debug: LDFLAGS += -lreadline debug: $(PROGRAM) .PHONY: clean |
