Changeset 118 for branches/dev/Makefile.in
- Timestamp:
- 05/31/07 22:54:44 (2 years ago)
- Files:
-
- branches/dev (copied) (copied from trunk)
- branches/dev/Makefile.in (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/dev/Makefile.in
r83 r118 6 6 BIN_DIRS = wmgui wminput lswm 7 7 DOC_DIRS = man doc 8 BIND_DIRS = python 9 10 SUB_DIRS = $(LIB_DIRS) $(BIN_DIRS) $(DOC_DIRS) $(BIND_DIRS) wmdemo 8 11 9 12 all install clean distclean uninstall: TARGET += $(MAKECMDGOALS) 10 13 11 all install clean distclean uninstall: $(BIN_DIRS) $(LIB_DIRS) 14 all install clean distclean uninstall: $(BIN_DIRS) $(LIB_DIRS) $(BIND_DIRS) 12 15 13 16 install uninstall distclean: $(DOC_DIRS) … … 17 20 ifneq ($(MAKECMDGOALS),clean) 18 21 ifneq ($(MAKECMDGOALS),distclean) 19 $(BIN_DIRS) : $(LIB_DIRS)22 $(BIN_DIRS) $(BIND_DIRS): $(LIB_DIRS) 20 23 endif 21 24 endif … … 25 28 endif 26 29 27 $( LIB_DIRS) $(BIN_DIRS) $(DOC_DIRS) wmdemo:30 $(SUB_DIRS): 28 31 $(MAKE) $(TARGET) -C $@ 29 32 … … 44 47 rm -rf $(CWIID_CONFIG_DIR) 45 48 46 .PHONY: all install clean distclean uninstall uninstall_config $(LIB_DIRS) \ 47 $(BIN_DIRS) $(DOC_DIRS) wmdemo 49 .PHONY: all install clean distclean uninstall uninstall_config $(SUB_DIRS) 48 50 49 51 .NOTPARALLEL:
