From 75808db17caf8b960b351e3408e74142f4c85aac Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 14 Apr 2024 15:42:30 +0200 Subject: Adding upstream version 2.117.0. Signed-off-by: Daniel Baumann --- .../name/underscore-s-suffix/build-spec/orig/Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 t/recipes/checks/libraries/static/name/underscore-s-suffix/build-spec/orig/Makefile (limited to 't/recipes/checks/libraries/static/name/underscore-s-suffix/build-spec/orig/Makefile') diff --git a/t/recipes/checks/libraries/static/name/underscore-s-suffix/build-spec/orig/Makefile b/t/recipes/checks/libraries/static/name/underscore-s-suffix/build-spec/orig/Makefile new file mode 100644 index 0000000..6545dde --- /dev/null +++ b/t/recipes/checks/libraries/static/name/underscore-s-suffix/build-spec/orig/Makefile @@ -0,0 +1,17 @@ +CC=gcc +CFLAGS+= -g +LIBFILES:= librealname_s.a + +all: $(LIBFILES) + +librealname_s.a: code.o + ar rcs -o $@ $^ + +clean: + rm -f *.a *.o + +install: all + install -m 0755 -d $(DESTDIR)/usr/lib + install -m 0644 *.a $(DESTDIR)/usr/lib + +.PHONY: install clean -- cgit v1.2.3