Changes in uspace/srv/net/app/nettest2/Makefile [1b1164e8:3be62bc] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/app/nettest2/Makefile
r1b1164e8 r3be62bc 1 1 # 2 # Copyright (c) 2005 Martin Decky 3 # Copyright (c) 2007 Jakub Jermar 2 # Copyright (c) 2009 Lukas Mejdrech 4 3 # All rights reserved. 5 4 # … … 28 27 # 29 28 30 NET_BASE = ../.. 31 USPACE_PREFIX = ../../../.. 32 LIBS = $(NET_BASE)/socket/libsocket.a 33 BINARY = nettest2 29 NAME = nettest2 34 30 31 NET_BASE = ../../ 32 STRUCTURES = $(NET_BASE)structures/ 33 34 include ../../../../../Makefile.config 35 36 ## Sources 37 # 38 39 OUTPUT = $(NAME) 35 40 SOURCES = \ 36 nettest2.c \37 $(NET_BASE) /app/nettest.c \38 $(NET_BASE) /app/parse.c \39 $(NET_BASE) /app/print_error.c41 $(NAME).c \ 42 $(NET_BASE)app/nettest.c \ 43 $(NET_BASE)app/parse.c \ 44 $(NET_BASE)app/print_error.c 40 45 41 include $(USPACE_PREFIX)/Makefile.common 46 LIBS += ../../socket/libsocket.a 47 48 include $(NET_BASE)Makefile.module
Note:
See TracChangeset
for help on using the changeset viewer.