Changeset 76ca3f7 in mainline for uspace/srv/net/app/ping/Makefile


Ignore:
Timestamp:
2010-03-23T20:49:54Z (15 years ago)
Author:
Lukas Mejdrech <lukasmejdrech@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e417b96
Parents:
b48ebd19 (diff), 63f8966 (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 mailnline changes, revision 329

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/app/ping/Makefile

    rb48ebd19 r76ca3f7  
    11#
    2 # Copyright (c) 2009 Lukas Mejdrech
     2# Copyright (c) 2005 Martin Decky
     3# Copyright (c) 2007 Jakub Jermar
    34# All rights reserved.
    45#
     
    2728#
    2829
    29 NAME = ping
     30NET_BASE = ../..
     31USPACE_PREFIX = ../../../..
     32LIBS = $(NET_BASE)/socket/libsocket.a
     33BINARY = ping
    3034
    31 NET_BASE = ../../
    32 STRUCTURES = $(NET_BASE)structures/
     35SOURCES = \
     36        ping.c \
     37        $(NET_BASE)/app/parse.c \
     38        $(NET_BASE)/app/print_error.c \
     39        $(NET_BASE)/inet.c \
     40        $(NET_BASE)/modules.c \
     41        $(NET_BASE)/tl/icmp/icmp_api.c \
     42        $(NET_BASE)/tl/icmp/icmp_common.c
    3343
    34 include ../../../../../Makefile.config
    35 
    36 ## Sources
    37 #
    38 
    39 OUTPUT = $(NAME)
    40 SOURCES = \
    41         $(NAME).c \
    42         $(NET_BASE)app/parse.c \
    43         $(NET_BASE)app/print_error.c \
    44         $(NET_BASE)inet.c \
    45         $(NET_BASE)modules.c \
    46         $(NET_BASE)tl/icmp/icmp_api.c \
    47         $(NET_BASE)tl/icmp/icmp_common.c
    48 
    49 include $(NET_BASE)Makefile.module
     44include $(USPACE_PREFIX)/Makefile.common
Note: See TracChangeset for help on using the changeset viewer.