blob: 75d070217211f4766d6d7f70cbae598a8e088c9a [file] [log] [blame]
Will Drewry80fbc6c2010-08-30 10:13:34 -05001# Copyright (C) 2010 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
Bill Richardson75fcf622010-03-16 13:05:12 -07004
Will Drewry80fbc6c2010-08-30 10:13:34 -05005all: rootdev librootdev.so.1.0
Bill Richardson75fcf622010-03-16 13:05:12 -07006
Will Drewry80fbc6c2010-08-30 10:13:34 -05007rootdev: rootdev.c main.c
8 $(CC) $(CFLAGS) $(LDFLAGS) $^ -o $@ -O2 -Wall
9
10librootdev.so.1.0: rootdev.c
11 $(CC) $(CFLAGS) $(LDFLAGS) -shared -fPIC \
12 -Wl,-soname,librootdev.so.1 $< -o $@
13 ln -s $@ librootdev.so.1
14 ln -s $@ librootdev.so
15
16clean:
17 rm -f rootdev librootdev.so*
18
19.PHONY: clean