File: Makefile.am

package info (click to toggle)
hk-classes 0.8.2-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 10,872 kB
  • ctags: 16,819
  • sloc: cpp: 90,990; ansic: 78,016; sh: 8,385; python: 3,793; makefile: 292
file content (21 lines) | stat: -rw-r--r-- 554 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
all:   clean
	python setup.py build
clean:
	/bin/rm -f -R ./build/*


swig: hk_classes.i hk_class.i hk_string.i hk_drivermanager.i hk_connection.i hk_database.i hk_datasource.i\
			hk_column.i hk_visible.i hk_dsvisible.i hk_dsdatavisible.i
	swig -c++ -python -I../hk_classes  hk_classes.i 

install-data-hook:
	if test -z "$(DESTDIR)"; then \
	   python setup.py install ; \
	else \
 	   python setup.py install --root $(DESTDIR) ; \
	fi
	/bin/rm -f -R ./build/*

uninstall-hook:
	python setup.py uninstall
EXTRA_DIST = hk_classes_wrap.cxx hk_classes.py