Changeset db4d6de in mainline for uspace/app/getvc/Makefile


Ignore:
Timestamp:
2009-11-28T16:30:43Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c4702804
Parents:
ba8f8cb (diff), 67392fa (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/getvc/Makefile

    rba8f8cb rdb4d6de  
    11#
    2 # Copyright (c) 2009 Martin Decky
     2# Copyright (c) 2005 Martin Decky
     3# Copyright (c) 2007 Jakub Jermar
    34# All rights reserved.
    45#
     
    2728#
    2829
    29 include ../../../version
     30include Makefile.common
    3031
    31 ## Setup toolchain
    32 #
     32.PHONY: all clean
    3333
    34 LIBC_PREFIX = ../../lib/libc
    35 SOFTINT_PREFIX = ../../lib/softint
    36 
    37 include $(LIBC_PREFIX)/Makefile.toolchain
    38 
    39 LIBS = $(LIBC_PREFIX)/libc.a
    40 DEFS += -DRELEASE=$(RELEASE) "-DNAME=$(NAME)"
    41 
    42 ## Sources
    43 #
    44 
    45 OUTPUT = getvc
    46 SOURCES = \
    47         getvc.c \
    48         version.c
    49 
    50 OBJECTS := $(addsuffix .o,$(basename $(SOURCES)))
    51 
    52 .PHONY: all clean depend disasm
    53 
    54 all: $(OUTPUT) $(OUTPUT).disasm
    55 
    56 -include Makefile.depend
     34all: $(LIBC_PREFIX)/../../../version $(LIBC_PREFIX)/../../../Makefile.config $(LIBC_PREFIX)/../../../config.h $(LIBC_PREFIX)/../../../config.defs $(LIBS)
     35        -[ -f $(DEPEND) ] && mv -f $(DEPEND) $(DEPEND_PREV)
     36        $(MAKE) -f Makefile.build
    5737
    5838clean:
    59         -rm -f $(OUTPUT) $(OUTPUT).map $(OUTPUT).disasm Makefile.depend $(OBJECTS)
    60 
    61 depend:
    62         $(CC) $(DEFS) $(CFLAGS) -M $(SOURCES) > Makefile.depend
    63 
    64 $(OUTPUT): $(OBJECTS) $(LIBS)
    65         $(LD) -T $(LIBC_PREFIX)/arch/$(UARCH)/_link.ld $(OBJECTS) $(LIBS) $(LFLAGS) -o $@ -Map $(OUTPUT).map
    66 
    67 disasm: $(OUTPUT).disasm
    68 
    69 $(OUTPUT).disasm: $(OUTPUT)
    70         $(OBJDUMP) -d $< > $@
    71 
    72 %.o: %.S
    73         $(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@
    74 
    75 %.o: %.s
    76         $(AS) $(AFLAGS) $< -o $@
    77 
    78 %.o: %.c
    79         $(CC) $(DEFS) $(CFLAGS) -c $< -o $@
     39        rm -f $(DEPEND) $(DEPEND_PREV) $(OUTPUT) $(OUTPUT).map $(OUTPUT).disasm
     40        find . -name '*.o' -follow -exec rm \{\} \;
Note: See TracChangeset for help on using the changeset viewer.