include ./Makefile.def SRCS_TMP = $(wildcard *.cc) <<<<<<< local SRCS_EXCLUDE = grep_main.cc # 除外するファイルを書く ======= SRCS_EXCLUDE = # 除外するファイルを書く >>>>>>> other SRCS = $(filter-out $(SRCS_EXCLUDE),$(SRCS_TMP)) OBJS = $(SRCS:.cc=.o) TASK_DIR = ppe TASK_SRCS_TMP = $(wildcard $(TASK_DIR)/*.cc) <<<<<<< local TASK_SRCS_EXCLUDE = switchGrep.cc ======= TASK_SRCS_EXCLUDE = >>>>>>> other TASK_SRCS = $(filter-out $(TASK_DIR)/$(TASK_SRCS_EXCLUDE),$(TASK_SRCS_TMP)) TASK_OBJS = $(TASK_SRCS:.cc=.o) LIBS += -lFifoManager `sdl-config --libs` CC += -m$(ABIBIT) .SUFFIXES: .cc .o .cc.o: $(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@ all: $(TARGET) $(TARGET): $(OBJS) $(TASK_OBJS) $(CC) -o $@ $(OBJS) $(TASK_OBJS) $(LIBS) link: <<<<<<< local $(CC) -o $(TARGET) $(OBJS) $(TASK_OBJS) $(LIBS) ======= $(CC) -o $(TARGET) $(OBJS) $(TASK_OBJS) $(LIBS) >>>>>>> other debug: $(TARGET) sudo gdb ./$(TARGET) clean: rm -f $(TARGET) $(OBJS) $(TASK_OBJS) rm -f *~ \#* rm -f ppe/*~ ppe/\#* rm -f spe/*~ spe/\#*