mirror of https://github.com/gityf/crc.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
309 B
Makefile
16 lines
309 B
Makefile
![]()
10 years ago
|
#CFLAGS = -DDEBUG_LOG -D_DEBUG
|
||
|
#CFLAGS = -DDEBUG_LOG
|
||
|
CFLAGS = -DLINUX
|
||
|
|
||
|
CC=gcc -std=c++11 -g -O3 $(CFLAGS)
|
||
|
CC=gcc -std=c++11 -g $(CFLAGS)
|
||
|
CCC=gcc -std=c++11 -g $(CFLAGS)
|
||
|
SHARED_FLAG = -fPIC -shared
|
||
|
|
||
|
%.o : %.cpp
|
||
|
$(CC) $(INC) -c $< -o $@
|
||
|
%.o : %.c
|
||
|
$(CC) $(INC) -c $< -o $@
|
||
|
%.o : %.cc
|
||
|
$(CC) $(INC) -c $< -o $@
|