summaryrefslogtreecommitdiffstats
path: root/mpcommon.mak
diff options
context:
space:
mode:
Diffstat (limited to 'mpcommon.mak')
-rw-r--r--mpcommon.mak30
1 files changed, 30 insertions, 0 deletions
diff --git a/mpcommon.mak b/mpcommon.mak
new file mode 100644
index 0000000000..510ba23200
--- /dev/null
+++ b/mpcommon.mak
@@ -0,0 +1,30 @@
+OBJS = $(SRCS:.c=.o)
+OBJS := $(OBJS:.S=.o)
+OBJS := $(OBJS:.s=.o)
+OBJS := $(OBJS:.cpp=.o)
+
+CFLAGS += -I. -I.. $(OPTFLAGS)
+
+.SUFFIXES: .c .o
+
+.c.o:
+ $(CC) -c $(CFLAGS) -o $@ $<
+
+all: $(LIBNAME)
+
+$(LIBNAME): $(OBJS)
+ $(AR) r $@ $^
+ $(RANLIB) $@
+
+clean::
+ rm -f *.o *.a *~
+
+distclean:: clean
+ rm -f .depend
+
+dep depend:
+ $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
+
+ifneq ($(wildcard .depend),)
+include .depend
+endif