Changeset 371bd7d in mainline for uspace/srv/net/il/ip/Makefile
- Timestamp:
- 2010-03-27T09:22:17Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 36a75a2
- Parents:
- cd82bb1 (diff), eaf22d4 (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 moved
-
uspace/srv/net/il/ip/Makefile (moved) (moved from uspace/app/edit/Makefile.build ) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/il/ip/Makefile
rcd82bb1 r371bd7d 28 28 # 29 29 30 ## Setup toolchain 31 # 32 33 include Makefile.common 34 include $(LIBC_PREFIX)/Makefile.toolchain 35 36 ## Sources 37 # 30 NET_BASE = ../.. 31 USPACE_PREFIX = ../../../.. 32 BINARY = ip 38 33 39 34 SOURCES = \ 40 edit.c \ 41 sheet.c 35 ip.c \ 36 ip_client.c \ 37 ip_module.c \ 38 $(NET_BASE)/checksum.c \ 39 $(NET_BASE)/inet.c \ 40 $(NET_BASE)/module.c \ 41 $(NET_BASE)/modules.c \ 42 $(NET_BASE)/il/arp/arp_remote.c \ 43 $(NET_BASE)/nil/nil_remote.c \ 44 $(NET_BASE)/net/net_remote.c \ 45 $(NET_BASE)/tl/icmp/icmp_client.c \ 46 $(NET_BASE)/tl/icmp/icmp_common.c \ 47 $(NET_BASE)/tl/icmp/icmp_remote.c \ 48 $(NET_BASE)/structures/char_map.c \ 49 $(NET_BASE)/structures/measured_strings.c \ 50 $(NET_BASE)/structures/module_map.c \ 51 $(NET_BASE)/structures/packet/packet.c \ 52 $(NET_BASE)/structures/packet/packet_client.c \ 53 $(NET_BASE)/structures/packet/packet_remote.c 42 54 43 OBJECTS := $(addsuffix .o,$(basename $(SOURCES))) 44 45 .PHONY: all 46 47 all: $(OUTPUT) $(OUTPUT).disasm 48 49 -include $(DEPEND) 50 51 $(OUTPUT).disasm: $(OUTPUT) 52 $(OBJDUMP) -d $< > $@ 53 54 $(OUTPUT): $(OBJECTS) $(LIBS) 55 $(LD) -T $(LIBC_PREFIX)/arch/$(UARCH)/_link.ld $(OBJECTS) $(LIBS) $(LFLAGS) -o $@ -Map $(OUTPUT).map 56 57 %.o: %.c $(DEPEND) 58 $(CC) $(DEFS) $(CFLAGS) -c $< -o $@ 59 60 $(DEPEND): 61 makedepend -f - -- $(DEPEND_DEFS) $(CFLAGS) -- $(SOURCES) > $@ 2> /dev/null 62 -[ -f $(DEPEND_PREV) ] && diff -q $(DEPEND_PREV) $@ && mv -f $(DEPEND_PREV) $@ 55 include $(USPACE_PREFIX)/Makefile.common
Note:
See TracChangeset
for help on using the changeset viewer.
