Changeset 632 for trunk/src/ash/Makefile.kmk
- Timestamp:
- Nov 26, 2006, 2:46:21 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ash/Makefile.kmk
r630 r632 17 17 kmk_ash_DEFS.linux = BSD 18 18 kmk_ash_DEFS.win = \ 19 PC_PATH_SEP PC_DRIVE_LETTERS PC_EXE_EXTS19 BSD PC_PATH_SEP PC_DRIVE_LETTERS PC_EXE_EXTS 20 20 kmk_ash_DEFS.os2 = \ 21 21 HAVE_SYS_SIGNAME HAVE_SYSCTL_H HAVE_SETPROGNAME \ 22 22 EXEC_HASH_BANG_SCRIPT PC_OS2_LIBPATHS PC_PATH_SEP PC_DRIVE_LETTERS PC_EXE_EXTS 23 23 kmk_ash_INCS = $(PATH_TARGET) . # (the last is because of error.h) 24 kmk_ash_INCS.win = win 24 25 kmk_ash_SOURCES = \ 25 26 alias.c \ … … 57 58 strlcpy.c \ 58 59 setmode.c 60 #kmk_ash_SOURCES.win = \ 61 # win/mscfakes.c 62 59 63 kmk_ash_DEPS = \ 60 64 $(PATH_TARGET)/arith.h \ … … 75 79 #ash.man_SYMLINKS = \ 76 80 # ash.1.gz=>sh.1 81 82 83 84 ifeq ($(filter-out nt win win32 win64,$(BUILD_TARGET)),) 85 86 # 87 # Use the pregenerated code. 88 # 89 kmk_ash_DEPS := 90 91 define def_copy_generated 92 $(PATH_TARGET)/$(src): generated/$(src) 93 $$(RM) -f $$@ 94 $$(CP) -f $$^ $$@ 95 kmk_ash_DEPS += $(PATH_TARGET)/$(src) 96 endef 97 98 $(foreach src, arith.h arith.c arith_lex.c builtins.h builtins.c nodes.h nodes.c token.h init.c,\ 99 $(eval $(def_copy_generated))) 100 101 include $(PATH_KBUILD)/footer.kmk 102 103 else 77 104 78 105 include $(PATH_KBUILD)/footer.kmk … … 112 139 $(MV) init.c $@ 113 140 141 endif
Note:
See TracChangeset
for help on using the changeset viewer.