File: Makefile.am

package info (click to toggle)
libuninameslist 20180701-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 4,812 kB
  • sloc: ansic: 93,672; python: 118; makefile: 107; sh: 4
file content (24 lines) | stat: -rw-r--r-- 577 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Makefile.am - Python script automakefile for libuninameslist
# Copyright (C) 2017, Joe Da Silva
# GPL3+
#
# Python doesn't quite follow same conventions as autoconf so
# you need to modify pythondir for your install and uninstall.

EXTRA_DIST = setup.py uninameslist.py
GENERATED = build wheel uninameslist.egg-info

wheel: $(EXTRA_DIST)
	$(PYTHON) $(srcdir)/setup.py sdist --dist-dir wheel bdist_wheel --universal --dist-dir wheel

all-local: wheel

clean-local:
	rm -rf $(GENERATED)

lint:
	pylint $(srcdir)/py

GITIGNOREFILES = $(GENERATED)

-include $(top_srcdir)/git.mk