File: Makefile.am

package info (click to toggle)
simulavr 1.0.0%2Bgit20160221.e53413b-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,740 kB
  • sloc: cpp: 35,491; python: 6,995; ansic: 3,567; makefile: 1,075; sh: 653; asm: 414; tcl: 320; javascript: 32
file content (42 lines) | stat: -rw-r--r-- 1,352 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#
# $Id$
#

MAINTAINERCLEANFILES = Makefile.in stamp-vti

EXTRA_DIST = timertest.cfg timertest.template timer_16_extn.py timer_16_extp.py \
    timer_16_icap_n.py timer_16_icap_nc.py timer_16_icap_p.py timer_16_icap_pc.py \
    timer_16bit.c timer_16bit_ext.c timer_16bit_fastpwm.py timer_16bit_fastpwm.sig \
    timer_16bit_icap.c timer_16bit_normal.py timer_16bit_normal.sig \
    timer_16bit_normal_90.sig timer_8bit.c timer_8bit_ctc.c timer_8bit_ctc.py \
    timer_8bit_ctc.sig timer_8bit_normal.py timer_8bit_normal.sig \
    timer_8bit_normal_90.sig timer_tX5_8bit.c timer_tX5_8bit_ctc.py \
    timer_tX5_8bit_normal.py timer_tX5_8bit_pwm.py

export PYTHONPATH=$(srcdir)/../modules:$(srcdir)/../../src/python

check-local: timertest

clean-local:
	rm -f timertest.makefile
	rm -f $(srcdir)/*.py[co] $(srcdir)/*.elf $(srcdir)/*.vcd

timertest:
if PYTHON_USE
if USE_AVR_CROSS
	@PYTHON@ -m create_makefile -o $(srcdir)/timertest.makefile \
	                            -c $(srcdir)/timertest.cfg \
	                            -t $(srcdir)/timertest.template
	$(MAKE) -f timertest.makefile test
else
	@echo "  Configure could not find AVR cross compiling environment so timertest"
	@echo "  can not be run."
endif
else
	@echo "  Configure could not find python on your system so timertest"
	@echo "  can not be run."
endif

.PHONY: timertest

# EOF