Changeset 43c3937 in mainline for uspace/app/killall/Makefile


Ignore:
Timestamp:
2011-01-07T10:43:15Z (13 years ago)
Author:
Matus Dekanek <smekideki@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5097bed4
Parents:
5f7d96e (diff), 0f191a2 (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 with usb/development

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/app/killall/Makefile

    r5f7d96e r43c3937  
    2727#
    2828
    29 USPACE_PREFIX = ../../..
    30 ROOT_PATH = $(USPACE_PREFIX)/..
     29USPACE_PREFIX = ../..
     30LIBS =
     31EXTRA_CFLAGS =
     32BINARY = killall
    3133
    32 COMMON_MAKEFILE = $(ROOT_PATH)/Makefile.common
    33 CONFIG_MAKEFILE = $(ROOT_PATH)/Makefile.config
     34SOURCES = \
     35        killall.c
    3436
    35 -include $(COMMON_MAKEFILE)
    36 -include $(CONFIG_MAKEFILE)
    37 
    38 ifeq ($(CONFIG_NETIF_NIL_BUNDLE),y)
    39         LO_SOURCE = lo.netif_nil_bundle
    40         NE2K_SOURCE = ne2k.netif_nil_bundle
    41 else
    42         LO_SOURCE = lo.netif_standalone
    43         NE2K_SOURCE = ne2k.netif_standalone
    44 endif
    45 
    46 LO_TARGET = lo
    47 NE2K_TARGET = ne2k
    48 
    49 .PHONY: all clean
    50 
    51 all: $(LO_TARGET) $(NE2K_TARGET)
    52 
    53 clean:
    54         rm -f $(LO_TARGET) $(NE2K_TARGET)
    55 
    56 $(LO_TARGET): $(LO_SOURCE)
    57         cp $< $@
    58 
    59 $(NE2K_TARGET): $(NE2K_SOURCE)
    60         cp $< $@
     37include $(USPACE_PREFIX)/Makefile.common
Note: See TracChangeset for help on using the changeset viewer.