Changes in uspace/srv/net/app/nettest1/Makefile [1b1164e8:177e4ea] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/app/nettest1/Makefile
r1b1164e8 r177e4ea 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 = nettest1 29 NAME = nettest1 34 30 31 NET_BASE = ../../ 32 STRUCTURES = $(NET_BASE)structures/ 33 34 include ../../../../../Makefile.common 35 include ../../../../../Makefile.config 36 37 ## Sources 38 # 39 40 OUTPUT = $(NAME) 35 41 SOURCES = \ 36 nettest1.c \37 $(NET_BASE) /app/nettest.c \38 $(NET_BASE) /app/parse.c \39 $(NET_BASE) /app/print_error.c42 $(NAME).c \ 43 $(NET_BASE)app/nettest.c \ 44 $(NET_BASE)app/parse.c \ 45 $(NET_BASE)app/print_error.c 40 46 41 include $(USPACE_PREFIX)/Makefile.common 47 LIBS += ../../socket/libsocket.a 48 49 include $(NET_BASE)Makefile.module
Note:
See TracChangeset
for help on using the changeset viewer.