ソースを参照

Makefile: remove Examples target (fixes #377)

Manfred Kroehnert 12 年 前
コミット
ecf535027c
1 ファイル変更2 行追加9 行削除
  1. 2 9
      Makefile

+ 2 - 9
Makefile

@@ -2,17 +2,15 @@
 AMBER = st
 SERVER = server
 REPL = repl
-EXAMPLES = examples
 
 # REST is all except AMBER
-REST = $(SERVER) $(EXAMPLES) $(REPL)
+REST = $(SERVER) $(REPL)
 
 # And these are all
 DIRS = $(AMBER) $(REST)
 
 # The sets of directories to do various things in
 BUILDDIRS = $(DIRS:%=build-%)
-EXAMPLESDIRS = $(EXAMPLES:%=build-%)
 INSTALLDIRS = $(AMBER:%=install-%)
 CLEANDIRS = $(REST:%=clean-%)
 CLEANALLDIRS = $(DIRS:%=clean-%)
@@ -24,13 +22,8 @@ $(BUILDDIRS):
 
 amber: build-st
 
-# Examples and server need Amber first
+# server needs Amber first
 build-server: build-st
-build-examples: build-st
-
-examples: $(EXAMPLESDIRS)
-$(EXAMPLESDIRS):
-	$(MAKE) -C $(@:build-%=%)
 
 install: $(INSTALLDIRS)
 $(INSTALLDIRS):