Changeset e035612 in mainline for uspace/app/bdsh/Makefile


Ignore:
Timestamp:
2009-10-14T15:00:02Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
68834d85, 7c7a3209, 81342f7
Parents:
c088fd4
Message:

make parallel build (with -j n) possible

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/Makefile

    rc088fd4 re035612  
    117117
    118118# Everything else is a phony target
    119 .PHONY: all clean distclean depend disasm
     119.PHONY: all clean distclean depend
    120120
    121 all: $(PROGRAM) disasm
     121all: $(PROGRAM) $(PROGRAM).disasm
    122122
    123123clean:
     
    131131        @echo ''
    132132
    133 disasm:
    134         $(OBJDUMP) -d $(PROGRAM) >$(PROGRAM).disasm
     133$(PROGRAM).disasm: $(PROGRAM)
     134        $(OBJDUMP) -d $< > $@
    135135
    136136distclean: clean
Note: See TracChangeset for help on using the changeset viewer.