From e4cf4331d99eb92bbb55b089b6b9c99bbb103ce0 Mon Sep 17 00:00:00 2001 From: hasufell Date: Tue, 15 Apr 2014 23:11:55 +0200 Subject: [PATCH] BUILD: fix linker errors when playing in main.c --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 4632fcc..07299e0 100644 --- a/src/Makefile +++ b/src/Makefile @@ -80,7 +80,7 @@ libpqc.so: libpqc.a $(PQC_HEADERS) $(LIBTOMMATH) $(LIBTOMPOLY) main: main.o libpqc.a $(LIBTOMMATH) $(LIBTOMPOLY) $(CC) $(CFLAGS) -o $@ $(LDFLAGS) \ - main.o libpqc.a $(LIBTOMMATH) $(LIBTOMPOLY) $(LIBS) + main.o $(LIBTOMPOLY) libpqc.a $(LIBTOMMATH) $(LIBS) install: $(INSTALL_DIR) "$(DESTDIR)$(INSTALL_BINDIR)"