summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn Hawthorn <john.hawthorn@gmail.com>2014-07-11 22:53:13 -0700
committerJohn Hawthorn <john.hawthorn@gmail.com>2014-07-11 22:53:44 -0700
commit23dd263c40da76a3bb22fe4b5462050ad5442169 (patch)
treef3e9cc88a50ad6cfba1b58c809b670fdfbdbca87 /Makefile
parent595d45f46bdc32b7284e87538b12a7054f6a04f2 (diff)
Makefile: s/CXX/CC/g
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index bba58b6..7944bcb 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ TARGET=fzy
OBJECTS=fzy.o
$(TARGET): $(OBJECTS)
- $(CXX) $(CXXFLAGS) -o $@ $^ $(LIBS)
+ $(CC) $(CCFLAGS) -o $@ $^ $(LIBS)
clean:
$(RM) $(TARGET) *.o