Changeset 04803bf in mainline for uspace/app/klog/Makefile


Ignore:
Timestamp:
2011-03-21T22:00:17Z (13 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
143932e
Parents:
b50b5af2 (diff), 7308e84 (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 (needs fixes).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/klog/Makefile

    rb50b5af2 r04803bf  
    11#
    22# Copyright (c) 2005 Martin Decky
     3# Copyright (c) 2007 Jakub Jermar
    34# All rights reserved.
    45#
     
    2728#
    2829
    29 ## Setup toolchain
    30 #
     30USPACE_PREFIX = ../..
     31BINARY = klog
    3132
    32 LIBC_PREFIX = ../../lib/libc
    33 SOFTINT_PREFIX = ../../lib/softint
    34 
    35 include $(LIBC_PREFIX)/Makefile.toolchain
    36 include $(LIBC_PREFIX)/Makefile.app
    37 
    38 ## Sources
    39 #
    40 
    41 OUTPUT = klog
    4233SOURCES = \
    4334        klog.c
    4435
    45 
    46 OBJECTS := $(addsuffix .o,$(basename $(SOURCES)))
    47 
    48 .PHONY: all clean depend disasm
    49 
    50 all: $(OUTPUT) $(OUTPUT).disasm
    51 
    52 -include Makefile.depend
    53 
    54 clean:
    55         -rm -f $(OUTPUT) $(OUTPUT).map $(OUTPUT).disasm Makefile.depend $(OBJECTS)
    56 
    57 depend:
    58         $(CC) $(DEFS) $(CFLAGS) -M $(SOURCES) > Makefile.depend
    59 
    60 $(OUTPUT): $(OBJECTS) $(LIBS)
    61         $(LD) -T $(LD_SCRIPT) $(OBJECTS) $(LIBS) $(LFLAGS) -o $@ -Map $(OUTPUT).map
    62 
    63 disasm: $(OUTPUT).disasm
    64 
    65 $(OUTPUT).disasm: $(OUTPUT)
    66         $(OBJDUMP) -d $< > $@
    67 
    68 %.o: %.S
    69         $(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@
    70 
    71 %.o: %.s
    72         $(AS) $(AFLAGS) $< -o $@
    73 
    74 %.o: %.c
    75         $(CC) $(DEFS) $(CFLAGS) -c $< -o $@
     36include $(USPACE_PREFIX)/Makefile.common
Note: See TracChangeset for help on using the changeset viewer.