Changeset 416f60e782bf1fe583d43e5a4ef081e67919e0b0
- Timestamp:
- 04/02/07 03:13:30 (6 years ago)
- Author:
- dsmith <dsmith@…>
- Children:
- 3a8a3e941d1203011d6750e817c43193b7953eea
- Parents:
- bdb6c2130d63cf82bab8f45201a39fdd60656dfe
- git-author:
- L. Donnie Smith <donnie.smith@…> (04/02/07 03:13:30)
- git-committer:
- dsmith <dsmith@…> (04/02/07 03:13:30)
- Message:
-
Added man and doc directories
git-svn-id: http://abstrakraft.org/cwiid/svn/trunk@54 918edb2d-ff29-0410-9de2-eb38e7f22bc7
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r2744ad3
|
r416f60e
|
|
| 1 | 1 | 2007-04-01 L. Donnie Smith <cwiid@abstrakraft.org> |
| | 2 | * Moved defs.mak.in to top level directory |
| | 3 | * Added directories to defs.mak.in |
| | 4 | * Moved CFLAGS directories from defs.mak to Makefiles |
| | 5 | * simplified make install deps |
| | 6 | |
| 2 | 7 | lswm |
| 3 | 8 | * created app |
-
|
rcc418bb
|
r416f60e
|
|
| 1 | 1 | #Copyright (C) 2007 L. Donnie Smith |
| 2 | 2 | |
| 3 | | COMMON = @top_builddir@/common |
| 4 | | include $(COMMON)/include/defs.mak |
| | 3 | include @top_builddir@/defs.mak |
| 5 | 4 | |
| 6 | 5 | LIB_DIRS = wiimote |
| 7 | 6 | BIN_DIRS = wmgui wminput lswm |
| | 7 | DOC_DIRS = man doc |
| 8 | 8 | |
| 9 | 9 | all install clean distclean uninstall: TARGET += $(MAKECMDGOALS) |
| 10 | 10 | |
| 11 | 11 | all install clean distclean uninstall: $(BIN_DIRS) $(LIB_DIRS) |
| | 12 | |
| | 13 | install uninstall distclean: $(DOC_DIRS) |
| 12 | 14 | |
| 13 | 15 | all clean distclean: wmdemo |
| … |
… |
|
| 23 | 25 | endif |
| 24 | 26 | |
| 25 | | $(LIB_DIRS) $(BIN_DIRS) wmdemo: |
| | 27 | $(LIB_DIRS) $(BIN_DIRS) $(DOC_DIRS) wmdemo: |
| 26 | 28 | $(MAKE) $(TARGET) -C $@ |
| 27 | 29 | |
| … |
… |
|
| 34 | 36 | distclean: |
| 35 | 37 | rm -rf Makefile config.log config.status autom4te.cache \ |
| 36 | | $(COMMON)/include/defs.mak $(COMMON)/include/lib.mak |
| | 38 | defs.mak $(COMMON)/include/lib.mak |
| 37 | 39 | |
| 38 | 40 | uninstall: |
| … |
… |
|
| 43 | 45 | |
| 44 | 46 | .PHONY: all install clean distclean uninstall uninstall_config $(LIB_DIRS) \ |
| 45 | | $(BIN_DIRS) wmdemo |
| | 47 | $(BIN_DIRS) $(DOC_DIRS) wmdemo |
| 46 | 48 | |
| 47 | 49 | .NOTPARALLEL: |
-
|
rbdb6c21
|
r416f60e
|
|
| 88 | 88 | [defs.mak] |
| 89 | 89 | [common/include/lib.mak] |
| | 90 | [doc/Makefile] |
| | 91 | [man/Makefile] |
| 90 | 92 | [wiimote/Makefile] |
| 91 | 93 | [wmdemo/Makefile] |