タイトルの通りですmakefileの中身は以下のようになっています
include ../bebop_make/options include ../bebop_make/Makefile.include include ../bebop_make/ecl include ../bebop_make/setup ## Filename of static library LIBUTIL_STATIC = libbebop_util$(STATIC_LIB_EXTENSION) ## Filename of dynamic library LIBUTIL_DYNAMIC = libbebop_util$(DYNAMIC_LIB_EXTENSION) ## ## Subdirectories in which to run Make recursively. Yes, yes, I'm aware ## of the paper "Recursive MAKE Considered Harmful." ## SUBDIRS = src tests ######################################################################### ## OUTPUT RULES ######################################################################### .PHONY: all all: @for i in $(SUBDIRS); do $(MAKE) -C $$i; done ctags: @for i in $(SUBDIRS); do $(MAKE) -C $$i ctags; done etags: @for i in $(SUBDIRS); do $(MAKE) -C $$i etags; done clean: @for i in $(SUBDIRS); do $(MAKE) -C $$i clean; done
エラーは以下のようにでます
../bebop_make/Makefile.include:1: *** 分離記号を欠いています. 中止.
Makefile.includeの中身は以下のようになっています
!<symlink>・・Makefile.include.linux
助けてください
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。