Changeset 04803bf in mainline for uspace/srv/fs/fat/Makefile
- Timestamp:
- 2011-03-21T22:00:17Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 143932e3
- 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. - File:
-
- 1 edited
-
uspace/srv/fs/fat/Makefile (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/Makefile
rb50b5af2 r04803bf 1 1 # 2 # Copyright (c) 2006 Martin Decky 2 # Copyright (c) 2005 Martin Decky 3 # Copyright (c) 2007 Jakub Jermar 3 4 # All rights reserved. 4 5 # … … 27 28 # 28 29 29 ## Setup toolchain 30 # 30 USPACE_PREFIX = ../../.. 31 LIBS = $(LIBBLOCK_PREFIX)/libblock.a $(LIBFS_PREFIX)/libfs.a 32 EXTRA_CFLAGS += -I$(LIBBLOCK_PREFIX) -I$(LIBFS_PREFIX) 33 BINARY = fat 31 34 32 LIBC_PREFIX = ../../../lib/libc33 LIBFS_PREFIX = ../../../lib/libfs34 LIBBLOCK_PREFIX = ../../../lib/libblock35 SOFTINT_PREFIX = ../../../lib/softint36 37 include $(LIBC_PREFIX)/Makefile.toolchain38 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.a45 46 ## Sources47 #48 49 OUTPUT = fat50 35 SOURCES = \ 51 36 fat.c \ … … 55 40 fat_fat.c 56 41 57 OBJECTS := $(addsuffix .o,$(basename $(SOURCES))) 58 59 .PHONY: all clean depend disasm 60 61 all: $(OUTPUT) $(OUTPUT).disasm 62 63 -include Makefile.depend 64 65 clean: 66 -rm -f $(OUTPUT) $(OUTPUT).map $(OUTPUT).disasm Makefile.depend $(OBJECTS) 67 68 depend: 69 $(CC) $(DEFS) $(CFLAGS) -M $(SOURCES) > Makefile.depend 70 71 $(OUTPUT): $(OBJECTS) $(LIBS) 72 $(LD) -T $(LIBC_PREFIX)/arch/$(UARCH)/_link.ld $(OBJECTS) $(LIBS) $(LFLAGS) -o $@ -Map $(OUTPUT).map 73 74 disasm: $(OUTPUT).disasm 75 76 $(OUTPUT).disasm: $(OUTPUT) 77 $(OBJDUMP) -d $< > $@ 78 79 %.o: %.S 80 $(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@ 81 82 %.o: %.s 83 $(AS) $(AFLAGS) $< -o $@ 84 85 %.o: %.c 86 $(CC) $(DEFS) $(CFLAGS) -c $< -o $@ 42 include $(USPACE_PREFIX)/Makefile.common
Note:
See TracChangeset
for help on using the changeset viewer.
