赞
踩
例如:
CC := gcc
CFLAGS := -Wall -g -Os
SHDIR := ../common
OBJS = ftserve.o $(SHDIR)/common.o
all: ftserve
ftserve: $(OBJS)
@$(CC) -o ftserve $(CFLAGS) $(OBJS)
$(OBJS) : %.o: %.c
@$(CC) -c $(CFLAGS) $< -o $@
.PHONY:
clean:
@rm -f *.o ftserve
@rm -f ../common/*.o
@echo Done cleaning
中 all有什么用?
转载自:http://bbs.csdn.net/topics/300199783
Makefile 的规则格式是这样的
1
2
3
4
|
target ... : prerequisites ...
command
...
...
|
1
2
3
4
5
6
7
|
all : hello another
hello : hello.cpp
g++ -o $@ $<
another : another.cpp
g++ -o $@ $<
|
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。