Changeset 1847 for Whitix/trunk/Makefile
- Timestamp:
- 01/24/09 13:21:11 (3 years ago)
- Files:
-
- 1 modified
-
Whitix/trunk/Makefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Whitix/trunk/Makefile
r1704 r1847 8 8 #Change to N to produce a smaller kernel if debug functionality is not required 9 9 CONFIG_ALLSYMS = Y 10 DEBUG_FILE = N 11 12 ifeq ($(DEBUG_FILE), Y) 13 POST_BUILD = objcopy --only-keep-debug kern kern.debug; strip kern; objcopy --add-gnu-debuglink=kern.debug kern 14 else 15 POST_BUILD = strip -g kern; 16 endif 10 17 11 18 PWD = $(shell pwd) … … 60 67 devices/kedev/*.o devices/acpi/*.o devices/misc/*.o kernel/*.o lib/*.o memory/*.o video/*.o \ 61 68 -o kern > kernel.txt 69 $(POST_BUILD) 62 70 mkdir -p $(DIRMODULES) 63 71 $(MAKE) -C net modules_install
