-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
54 lines (41 loc) · 1.46 KB
/
Makefile
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Written by Sim Young-Bo
# e-mail: ybsim@khu.ac.kr
################################################################################
# Environment Variables
# Before using this makefile, you should set these two variables depend on your own computer.
################################################################################
export STAGING_DIR = /home/sim/Downloads/OpenWrt-SDK/staging_dir
export PATH := $(PATH):$(STAGING_DIR)/toolchain/bin
################################################################################
# Compile Option
################################################################################
CC = arm-openwrt-linux-gcc
USR = $(STAGING_DIR)/toolchain/usr
INCLUDEPATH = $(USR)/include
LIBS = $(USR)/lib
CFLAGS = -I$(INCLUDEPATH)
LDFLAGS = -L$(LIBS)
################################################################################
# Sources
################################################################################
SRCS = hello.c
OBJS = $(SRCS:.c=.o)
EXECUTABLE = hello
all: $(EXECUTABLE)
$(EXECUTABLE): $(OBJS)
@echo [LD] $@
@$(CC) -o $@ $^ $(LDFLAGS)
.c.o:
@echo [Compile] $<
@$(CC) $< -c $(CFLAGS)
clean:
@echo [clean]
@rm $(OBJS) -f
@rm $(EXECUTABLE) -f
@rm dependency -f
# http://forum.falinux.com/zbxe/?document_srl=494921&mid=lecture_tip&sort_index=regdate&order_type=desc
dep :
@$(CC) -M -I$(INCLUDEPATH) $(SRCS) > dependency
ifeq (dependency,$(wildcard dependency))
include dependency
endif