Changeset 1221 for trunk/src/kash/Makefile.kmk
- Timestamp:
- Oct 8, 2007, 1:15:00 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kash/Makefile.kmk
r1218 r1221 19 19 kmk_ash_DEFS.solaris = BSD 20 20 kmk_ash_DEFS.win = \ 21 BSD PC_PATH_SEP PC_DRIVE_LETTERS PC_EXE_EXTS 21 BSD PC_PATH_SEP PC_DRIVE_LETTERS PC_EXE_EXTS YY_NO_UNISTD_H 22 22 kmk_ash_DEFS.os2 = \ 23 23 HAVE_SYS_SIGNAME HAVE_SYSCTL_H HAVE_SETPROGNAME \ … … 82 82 setmode.c 83 83 84 kmk_ash_ DEPS = \84 kmk_ash_ORDERDEPS = \ 85 85 $(PATH_TARGET)/arith.h \ 86 86 $(PATH_TARGET)/builtins.h \ … … 88 88 $(PATH_TARGET)/token.h 89 89 kmk_ash_CLEAN = \ 90 $(kmk_ash_ DEPS) \90 $(kmk_ash_ORDERDEPS) \ 91 91 $(PATH_TARGET)/arith.c \ 92 92 $(PATH_TARGET)/arith_lex.c \ … … 103 103 104 104 105 ifeq ($(filter-out nt win win32 win64,$(BUILD_TARGET)),)105 ifeq ($(filter-out win,$(BUILD_TARGET)),) 106 106 107 107 # 108 108 # Use the pregenerated code. 109 109 # 110 kmk_ash_DEPS := 111 112 define def_copy_generated 113 $(PATH_TARGET)/$(src): generated/$(src) 114 $$(RM) -f $$@ 115 $$(CP) -f $$^ $$@ 116 kmk_ash_DEPS += $(PATH_TARGET)/$(src) 117 endef 118 119 #$(foreach src, arith.h arith.c arith_lex.c builtins.h builtins.c nodes.h nodes.c token.h init.c,\ 120 #$(eval $(def_copy_generated))) 121 110 kmk_ash_ORDERDEPS := 122 111 kmk_ash_INCS += generated 123 kmk_ash_ DEFS += HAVE_SYS_CDEFS_H112 kmk_ash_SOURCES := $(patsubst $(PATH_TARGET)/%,generated/%,$(kmk_ash_SOURCES)) 124 113 125 114 include $(PATH_KBUILD)/footer.kmk
Note:
See TracChangeset
for help on using the changeset viewer.