summaryrefslogtreecommitdiffstats
path: root/t/recipes/checks/libraries/static/name/underscore-s-suffix/build-spec/orig/Makefile
blob: 6545dde0a9a561edb8388c36b3854e7279bec02f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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