Ignore:
Timestamp:
Dec 14, 2005, 6:42:21 AM (20 years ago)
Author:
bird
Message:

Corrected directory deps.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ash/Makefile.kmk

    r2490 r2491  
    6767include $(PATH_KBUILD)/rules.kmk
    6868
    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))
    7070        yacc -ld $^
    7171        $(MV) -f y.tab.c $(PATH_TARGET)/arith.c
    7272        $(MV) -f y.tab.h $(PATH_TARGET)/arith.h
    7373
    74 $(PATH_TARGET)/arith_lex.c: arith_lex.l | $(PATH_TARGET)
     74$(PATH_TARGET)/arith_lex.c: arith_lex.l | $(call DIRDEP,$(PATH_TARGET))
    7575        flex -8 -o$@ $^                     # 8-bit lex scanner for arithmetic
    7676
    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))
    7878        $+ $(dir $@)
    7979        [ -f $(PATH_TARGET)/builtins.h ]
    8080
    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))
    8282        $+ $(dir $@)
    8383        [ -f $(dir $@)/nodes.h ]
    8484
    85 $(PATH_TARGET)/token.h: mktokens | $(PATH_TARGET)
     85$(PATH_TARGET)/token.h: mktokens | $(call DIRDEP,$(PATH_TARGET))
    8686        $+
    8787        $(MV) token.h $@
    8888
    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))
    9090        $+
    9191        $(MV) init.c $@
Note: See TracChangeset for help on using the changeset viewer.