File: Makefile

package info (click to toggle)
golang-github-theupdateframework-go-tuf 0.5.2-5~bpo12%2B1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-backports
  • size: 7,596 kB
  • sloc: python: 163; sh: 37; makefile: 12
file content (10 lines) | stat: -rw-r--r-- 201 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
PYTHON_TUF=python-tuf-v2.0.0

all:
	docker build -t tuf-gen ./$(PYTHON_TUF)
	docker run tuf-gen | tar x -C $(PYTHON_TUF)

clean:
	rm -rf $(PYTHON_TUF)/with{,out}-consistent-snapshot

.PHONY: all clean