aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
blob: 9d04274f7ab34cacca9a3cb5406b1c24515f1828 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
TARGET=main
CC=clang
CC?=clang
CC_FLAGS=
CC_EXTRA?=
CC_FLAGS+=$(CC_EXTRA)

.DEFAULT:all clean

.PHONY:all clean $(TARGET) help dirs

all: dirs $(TARGET)

dirs:
	if [[ ! -d obj ]]; then mkdir obj;fi
	if [[ ! -d libs ]]; then mkdir libs;fi

.c.o:
	$(CC) $(CC_FLAGS) -c $< -o $@ 

android:
	export NDK_PROJECT_PATH=`pwd`
	ndk-build

$(TARGET): main.o
	$(CC) $^ $(LD_FLAGS) -o $@

clean:
	rm -f *.o *~ $(TARGET)

help:
	@echo "all is the default target"
	@echo "there is delete."
	@echo "there is clean."