aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-04-17 13:11:05 +0200
committerMattias Andrée <maandree@kth.se>2021-04-17 13:11:05 +0200
commitd7b79068d6139528ce3b98bf50e9356127de39ed (patch)
treec98e270ba156bcb9fef20cd5e11c7ce716016462
parentMake test compile faster (diff)
downloadlibterminput-d7b79068d6139528ce3b98bf50e9356127de39ed.tar.gz
libterminput-d7b79068d6139528ce3b98bf50e9356127de39ed.tar.bz2
libterminput-d7b79068d6139528ce3b98bf50e9356127de39ed.tar.xz
Unimportant fix to makefile
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a62e2df..dfc9813 100644
--- a/Makefile
+++ b/Makefile
@@ -44,7 +44,7 @@ $(LOBJ): $(@:.lo=.c) $(HDR)
$(AR) -s $@
.lo.$(LIBEXT):
- $(CC) $(LIBFLAGS) $(LDFLAGS_METHODS) -o $@ $< $(LDFLAGS)
+ $(CC) $(LIBFLAGS) -o $@ $< $(LDFLAGS)
interactive-test: interactive-test.o libterminput.a
$(CC) -o $@ interactive-test.o libterminput.a $(LDFLAGS)