Changeset 80cd7cd in mainline for uspace/app/killall/Makefile
- Timestamp:
- 2011-01-13T20:58:24Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 87e373b
- Parents:
- eaef141 (diff), a613fea1 (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
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/killall/Makefile
reaef141 r80cd7cd 27 27 # 28 28 29 USPACE_PREFIX = ../../.. 30 ROOT_PATH = $(USPACE_PREFIX)/.. 29 USPACE_PREFIX = ../.. 30 LIBS = 31 EXTRA_CFLAGS = 32 BINARY = killall 31 33 32 COMMON_MAKEFILE = $(ROOT_PATH)/Makefile.common 33 CONFIG_MAKEFILE = $(ROOT_PATH)/Makefile.config 34 SOURCES = \ 35 killall.c 34 36 35 -include $(COMMON_MAKEFILE) 36 -include $(CONFIG_MAKEFILE) 37 38 LO_SOURCE = lo.netif_standalone 39 NE2K_SOURCE = ne2k.netif_standalone 40 41 LO_TARGET = lo 42 NE2K_TARGET = ne2k 43 44 .PHONY: all clean 45 46 all: $(LO_TARGET) $(NE2K_TARGET) 47 48 clean: 49 rm -f $(LO_TARGET) $(NE2K_TARGET) 50 51 $(LO_TARGET): $(LO_SOURCE) 52 cp $< $@ 53 54 $(NE2K_TARGET): $(NE2K_SOURCE) 55 cp $< $@ 37 include $(USPACE_PREFIX)/Makefile.common
Note:
See TracChangeset
for help on using the changeset viewer.