aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2019-02-23 22:47:01 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2019-02-23 22:47:01 +0100
commit451b4f0a4e777ee46c29bd8a1bc22e68254c7f84 (patch)
tree6610da889b059ccd290e8c7f454f3df3ff8e65ab /Makefile
parentComments and generalizations. (diff)
downloadcalp-451b4f0a4e777ee46c29bd8a1bc22e68254c7f84.tar.gz
calp-451b4f0a4e777ee46c29bd8a1bc22e68254c7f84.tar.xz
Switch back to C compiler.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0ae2ccc0..6daff1d4 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
.PHONY: all clean
-CC := g++
+CC := gcc
OBJDIR = obj
-CFLAGS = -std=gnu++11 -Wall -Wextra \
+CFLAGS = -std=gnu11 -Wall -Wextra \
-ggdb -fPIC \
$(shell guile-config compile)
LDFLAGS = -fPIC $(shell guile-config link)