Skip to content

Commit

Permalink
initial stubs from recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
s-u committed Aug 7, 2024
0 parents commit 569fb52
Show file tree
Hide file tree
Showing 10 changed files with 7,140 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Makefile.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
srcdir = @srcdir@
VPATH = @srcdir@
STUBS = @STUBS@
prefix = @prefix@

stubs: $(STUBS)
mkdir -p stubs
for i in $(STUBS); do cp -p $$i/* stubs/; done

install: stubs
mkdir -p $(DESTDIR)/$(prefix)/lib/pkgconfig
cp -p stubs/* $(DESTDIR)/$(prefix)/lib/pkgconfig

clean:
rm -rf stubs

.PHONY: all install clean
Loading

0 comments on commit 569fb52

Please sign in to comment.