Changeset 3c664d6 in mainline for uspace/Makefile.common


Ignore:
Timestamp:
2010-05-26T15:53:56Z (14 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
313b617
Parents:
cf84f1bf
Message:

fix interpretting variable assignment as a shell command

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile.common

    rcf84f1bf r3c664d6  
    9595LINKER_SCRIPT ?= $(LIBC_PREFIX)/arch/$(UARCH)/_link.ld
    9696
    97 .PHONY: all clean
    98 
    99 all: $(VERSION_DEF) $(COMMON_MAKEFILE) $(CONFIG_MAKEFILE) $(CONFIG_HEADER) $(LIBS) $(OUTPUT) $(EXTRA_OUTPUT)
    100         -[ -f $(DEPEND) ] && cp -a $(DEPEND) $(DEPEND_PREV)
    101 
    102 clean:
    103         rm -f $(DEPEND) $(DEPEND_PREV) $(JOB) $(OUTPUT) $(EXTRA_OUTPUT) $(EXTRA_CLEAN)
    104         find . -name '*.o' -follow -exec rm \{\} \;
    105 
    10697ifeq ($(CONFIG_OPTIMIZE_FOR_SIZE),y)
    10798        OPTIMIZATION = s
     
    109100        OPTIMIZATION = 3
    110101endif
     102
     103.PHONY: all clean
     104
     105all: $(VERSION_DEF) $(COMMON_MAKEFILE) $(CONFIG_MAKEFILE) $(CONFIG_HEADER) $(LIBS) $(OUTPUT) $(EXTRA_OUTPUT)
     106        -[ -f $(DEPEND) ] && cp -a $(DEPEND) $(DEPEND_PREV)
     107
     108clean:
     109        rm -f $(DEPEND) $(DEPEND_PREV) $(JOB) $(OUTPUT) $(EXTRA_OUTPUT) $(EXTRA_CLEAN)
     110        find . -name '*.o' -follow -exec rm \{\} \;
    111111
    112112GCC_CFLAGS = -I$(LIBC_PREFIX)/include -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \
Note: See TracChangeset for help on using the changeset viewer.