mirror of
https://github.com/yhirose/cpp-httplib.git
synced 2025-05-11 13:44:02 +00:00
19 lines
297 B
Makefile
19 lines
297 B
Makefile
|
|
USE_CLANG = 1
|
|
|
|
ifdef USE_CLANG
|
|
CC = clang++
|
|
CFLAGS = -std=c++0x -stdlib=libc++ -g
|
|
else
|
|
CC = g++
|
|
CFLAGS = -std=c++11 -g
|
|
endif
|
|
|
|
all: sample hello
|
|
|
|
sample : sample.cc ../httpsvrkit.h
|
|
$(CC) -o sample $(CFLAGS) -I.. sample.cc
|
|
|
|
hello : hello.cc ../httpsvrkit.h
|
|
$(CC) -o hello $(CFLAGS) -I.. hello.cc
|