makefile 썸네일형 리스트형 makefile(.mk) flag and blank issue If your flag has [blank] end of word, "ifeq" make miss understanding. ex)CONFIG_AAA := true [blank]ifeq ($(CONFIG_AAA), true)end So we need to use "strip" sentence when we use "ifeq" ifeq ($(strip $(CONFIG_AAA)),true) 더보기 Makefile 예제 자주 사용하는 Makefile 예제를 하나 올려둔다. 복사용~ CC = /usr/local/arm/4.2.2-eabi/usr/bin/arm-linux-gcc// 리눅스 머신에서 돌릴경우CC = /usr/bin/gcc CFLAGS = -Wall -lpthread -g -O0 -DLSI6410 CSRCS = ./key_test.c OBJS = $(CSRCS:.c=.o) .SUFFIXES:.c.o all: key_test cap_test: $(CC) $(CFLAGS) -o $@ $(CSRCS) clean: rm -f key_test $(OBJS) 더보기 이전 1 다음