Changeset 2491 for trunk/ash/Makefile.kmk
- Timestamp:
- Dec 14, 2005, 6:42:21 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ash/Makefile.kmk
r2490 r2491 67 67 include $(PATH_KBUILD)/rules.kmk 68 68 69 $(PATH_TARGET)/arith.h $(PATH_TARGET)/arith.c: arith.y | $( PATH_TARGET)69 $(PATH_TARGET)/arith.h $(PATH_TARGET)/arith.c: arith.y | $(call DIRDEP,$(PATH_TARGET)) 70 70 yacc -ld $^ 71 71 $(MV) -f y.tab.c $(PATH_TARGET)/arith.c 72 72 $(MV) -f y.tab.h $(PATH_TARGET)/arith.h 73 73 74 $(PATH_TARGET)/arith_lex.c: arith_lex.l | $( PATH_TARGET)74 $(PATH_TARGET)/arith_lex.c: arith_lex.l | $(call DIRDEP,$(PATH_TARGET)) 75 75 flex -8 -o$@ $^ # 8-bit lex scanner for arithmetic 76 76 77 $(PATH_TARGET)/builtins.h $(PATH_TARGET)/builtins.c: mkbuiltins shell.h builtins.def | $( PATH_TARGET)77 $(PATH_TARGET)/builtins.h $(PATH_TARGET)/builtins.c: mkbuiltins shell.h builtins.def | $(call DIRDEP,$(PATH_TARGET)) 78 78 $+ $(dir $@) 79 79 [ -f $(PATH_TARGET)/builtins.h ] 80 80 81 $(PATH_TARGET)/nodes.h $(PATH_TARGET)/nodes.c: mknodes.sh nodetypes nodes.c.pat | $( PATH_TARGET)81 $(PATH_TARGET)/nodes.h $(PATH_TARGET)/nodes.c: mknodes.sh nodetypes nodes.c.pat | $(call DIRDEP,$(PATH_TARGET)) 82 82 $+ $(dir $@) 83 83 [ -f $(dir $@)/nodes.h ] 84 84 85 $(PATH_TARGET)/token.h: mktokens | $( PATH_TARGET)85 $(PATH_TARGET)/token.h: mktokens | $(call DIRDEP,$(PATH_TARGET)) 86 86 $+ 87 87 $(MV) token.h $@ 88 88 89 $(PATH_TARGET)/init.c: mkinit.sh $(filter-out $(PATH_TARGET)/%,$(ash_SOURCES)) | $( PATH_TARGET)89 $(PATH_TARGET)/init.c: mkinit.sh $(filter-out $(PATH_TARGET)/%,$(ash_SOURCES)) | $(call DIRDEP,$(PATH_TARGET)) 90 90 $+ 91 91 $(MV) init.c $@
Note:
See TracChangeset
for help on using the changeset viewer.