blob: 1575f3a35a6b796e94e7e073f9bf691ecf1c98dc [file] [log] [blame]
# Copyright (C) 2010 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
CFLAGS += -Wall -Werror
OUT = $(CURDIR)
$(shell mkdir -p $(OUT))
all: $(OUT)/rootdev $(OUT)/librootdev.so.1.0
$(OUT)/rootdev: main.c $(OUT)/librootdev.so.1.0
$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) $^ -o $@
$(OUT)/librootdev.so.1.0: rootdev.c
$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -shared -fPIC \
-Wl,-soname,librootdev.so.1 $< -o $@
ln -s $(@F) $(OUT)/librootdev.so.1
ln -s $(@F) $(OUT)/librootdev.so
clean:
rm -f $(OUT)/rootdev $(OUT)/librootdev.so*
.PHONY: clean