Changeset 77a194c in mainline for uspace/srv/bd/vbd/Makefile
- Timestamp:
- 2015-11-04T18:55:46Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 44183b98
- Parents:
- 5265eea4 (diff), bfcde8d (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/srv/bd/vbd/Makefile
r5265eea4 r77a194c 1 1 # 2 # Copyright (c) 201 0Jiri Svoboda2 # Copyright (c) 2015 Jiri Svoboda 3 3 # All rights reserved. 4 4 # … … 27 27 # 28 28 29 USPACE_PREFIX = ../../../.. 30 LIBS = $(LIBBLOCK_PREFIX)/libblock.a 31 EXTRA_CFLAGS = -I$(LIBBLOCK_PREFIX) 29 USPACE_PREFIX = ../../.. 32 30 33 # Correct name is 'guid_part' but must use this because of FAT 8.3 names. 34 BINARY = g_part 31 LIBS = \ 32 $(LIBLABEL_PREFIX)/liblabel.a \ 33 $(LIBBLOCK_PREFIX)/libblock.a 34 35 EXTRA_CFLAGS = \ 36 -I$(LIBLABEL_PREFIX)/include \ 37 -I$(LIBBLOCK_PREFIX) 38 39 BINARY = vbd 35 40 36 41 SOURCES = \ 37 guid_part.c 42 disk.c \ 43 vbd.c 38 44 39 45 include $(USPACE_PREFIX)/Makefile.common
Note:
See TracChangeset
for help on using the changeset viewer.