1
0
mirror of git://projects.qi-hardware.com/ben-blinkenlights.git synced 2024-06-28 23:12:22 +03:00
ben-blinkenlights/libubb/Makefile
Werner Almesberger a8f905a85f libubb/physmem.c: new function physmem_flush to flush cached writes to memory
This is mainly a wrapper for the "cacheflush" system call.
2013-01-15 23:30:02 -03:00

42 lines
941 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 -march=mips32 -Iinclude
LIB = libubb.a
SHLIB = libubb.so
OBJS = ubb.o swuart.o mmcclk.o physmem.o
HDRS = ubb/ubb.h ubb/regbase.h ubb/regs4740.h ubb/swuart.h ubb/mmcclk.h \
ubb/physmem.h
.PHONY: all clean spotless
all: $(SHLIB)
$(SHLIB): $(LIB)
$(LD) -shared -soname $@ -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)