mirror of
git://projects.qi-hardware.com/ben-blinkenlights.git
synced 2024-11-23 21:23:09 +02:00
64c14fb709
The improved cleanup removes the library after a partially successful build.
45 lines
998 B
Makefile
45 lines
998 B
Makefile
#
|
|
# libubb/Makefile - Build the UBB library
|
|
#
|
|
# Written 2012-2013 by Werner Almesberger
|
|
# Copyright 2012-2013 Werner Almesberger
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
|
|
|
|
TARGET = mipsel-openwrt-linux-
|
|
CC = $(TARGET)gcc
|
|
LD = $(TARGET)ld
|
|
|
|
CFLAGS = -g -Wall -fPIC -Iinclude
|
|
LIB = libubb.a
|
|
SHLIB = libubb.so
|
|
LIBVERSION = 0.0.0
|
|
|
|
OBJS = ubb.o swuart.o
|
|
HDRS = ubb/ubb.h ubb/regbase.h ubb/regs4740.h ubb/swuart.h
|
|
|
|
.PHONY: all clean spotless
|
|
|
|
all: $(SHLIB).$(LIBVERSION)
|
|
|
|
$(SHLIB).$(LIBVERSION): $(SHLIB)
|
|
/sbin/ldconfig -n .
|
|
|
|
$(SHLIB): $(LIB)
|
|
$(LD) -shared -soname $@.$(LIBVERSION) -o $@ \
|
|
--whole-archive $^ || { rm -f $@; exit 1; }
|
|
|
|
$(LIB): $(OBJS)
|
|
$(AR) cr $@ $^ || { rm -f $@; exit 1; }
|
|
|
|
clean:
|
|
rm -f $(OBJS)
|
|
|
|
spotless: clean
|
|
rm -f $(LIB) $(SHLIB) $(SHLIB).$(LIBVERSION)
|