Commit 32d79b0310b6602e4846a5972bebde6b169945f3

Guillem Jover 2010-01-30T22:39:18

build: By default set CC to gcc

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/Makefile b/Makefile
index d63ac12..05f344d 100644
--- a/Makefile
+++ b/Makefile
@@ -100,6 +100,8 @@ LIB_MANS := $(patsubst %,src/%,$(LIB_MANS))
 LIB_STATIC_OBJS := $(LIB_SRCS:%.c=%.o)
 LIB_SHARED_OBJS := $(LIB_SRCS:%.c=%.lo)
 
+CC = gcc
+
 # Set default value for compilation
 CFLAGS ?= -g -Wall -Wextra -Wno-unused-variable