diff options
author | Aleksey Veresov <aleksey@veresov.pro> | 2019-09-13 19:04:27 +0300 |
---|---|---|
committer | Aleksey Veresov <aleksey@veresov.pro> | 2019-09-13 19:04:27 +0300 |
commit | 1427a57ac2c766f0321e5ccd5a6890ffe7323d17 (patch) | |
tree | b29c438e97ef226c7ce7aaaeb8a1fcc9be180bc0 | |
parent | ad6188f911af896c9c77e9215bea3c5c2a4e6cc3 (diff) | |
download | magi-1427a57ac2c766f0321e5ccd5a6890ffe7323d17.tar magi-1427a57ac2c766f0321e5ccd5a6890ffe7323d17.tar.xz magi-1427a57ac2c766f0321e5ccd5a6890ffe7323d17.zip |
Makefiles fix.
-rw-r--r-- | examples/makefile | 2 | ||||
-rw-r--r-- | makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/makefile b/examples/makefile index e951b47..ecd7bc9 100644 --- a/examples/makefile +++ b/examples/makefile @@ -12,7 +12,7 @@ CFLAGS += -O3 endif INCLUDE = ../src -LFLAGS = -L.. -lcgi +LFLAGS = -L.. -lmagi default: $(EXAMPLES) @@ -4,7 +4,7 @@ # ERRLOG = yes CC = gcc -LIB = libcgi.a +LIB = libmagi.a CFLAGS = -xc -ansi -pedantic -Wall ifeq '$(DEBUG)' 'yes' |