Changeset 5f70118 in mainline for uspace/srv/fs/tmpfs/Makefile


Ignore:
Timestamp:
2010-01-10T12:16:59Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c77a64f
Parents:
309ede1 (diff), 1ac3a52 (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/srv/fs/tmpfs/Makefile

    r309ede1 r5f70118  
    11#
    2 # Copyright (c) 2006 Martin Decky
     2# Copyright (c) 2005 Martin Decky
     3# Copyright (c) 2007 Jakub Jermar
    34# All rights reserved.
    45#
     
    2728#
    2829
    29 ## Setup toolchain
    30 #
     30include Makefile.common
    3131
    32 LIBC_PREFIX = ../../../lib/libc
    33 LIBFS_PREFIX = ../../../lib/libfs
    34 LIBBLOCK_PREFIX = ../../../lib/libblock
    35 SOFTINT_PREFIX = ../../../lib/softint
     32.PHONY: all clean
    3633
    37 include $(LIBC_PREFIX)/Makefile.toolchain
    38 
    39 CFLAGS += -I $(LIBFS_PREFIX) -I $(LIBBLOCK_PREFIX)
    40 
    41 LIBS = \
    42         $(LIBFS_PREFIX)/libfs.a \
    43         $(LIBBLOCK_PREFIX)/libblock.a \
    44         $(LIBC_PREFIX)/libc.a
    45 
    46 ## Sources
    47 #
    48 
    49 OUTPUT = tmpfs
    50 SOURCES = \
    51         tmpfs.c \
    52         tmpfs_ops.c \
    53         tmpfs_dump.c
    54 
    55 OBJECTS := $(addsuffix .o,$(basename $(SOURCES)))
    56 
    57 .PHONY: all clean depend disasm
    58 
    59 all: $(OUTPUT) $(OUTPUT).disasm
    60 
    61 -include Makefile.depend
     34all: $(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 PRECHECK=$(PRECHECK)
    6237
    6338clean:
    64         -rm -f $(OUTPUT) $(OUTPUT).map $(OUTPUT).disasm Makefile.depend $(OBJECTS)
    65 
    66 depend:
    67         $(CC) $(DEFS) $(CFLAGS) -M $(SOURCES) > Makefile.depend
    68 
    69 $(OUTPUT): $(OBJECTS) $(LIBS)
    70         $(LD) -T $(LIBC_PREFIX)/arch/$(UARCH)/_link.ld $(OBJECTS) $(LIBS) $(LFLAGS) -o $@ -Map $(OUTPUT).map
    71 
    72 disasm: $(OUTPUT).disasm
    73 
    74 $(OUTPUT).disasm: $(OUTPUT)
    75         $(OBJDUMP) -d $< > $@
    76 
    77 %.o: %.S
    78         $(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@
    79 
    80 %.o: %.s
    81         $(AS) $(AFLAGS) $< -o $@
    82 
    83 %.o: %.c
    84         $(CC) $(DEFS) $(CFLAGS) -c $< -o $@
     39        rm -f $(DEPEND) $(DEPEND_PREV) $(JOB) $(OUTPUT) $(OUTPUT).map $(OUTPUT).disasm
     40        find . -name '*.o' -follow -exec rm \{\} \;
Note: See TracChangeset for help on using the changeset viewer.