19 lines
333 B
Makefile
19 lines
333 B
Makefile
|
|
## Process this file with automake to produce Makefile.in
|
||
|
|
|
||
|
|
TESTS = diffpair.sh fourbitadder.sh resistor.sh
|
||
|
|
|
||
|
|
TESTS_ENVIRONMENT = $(SHELL)
|
||
|
|
|
||
|
|
EXTRA_DIST = \
|
||
|
|
README \
|
||
|
|
config.sh \
|
||
|
|
$(TESTS) \
|
||
|
|
diffpair.cir \
|
||
|
|
diffpair.out \
|
||
|
|
fourbitadder.cir \
|
||
|
|
fourbitadder.out \
|
||
|
|
resistor.cir \
|
||
|
|
resistor.out
|
||
|
|
|
||
|
|
MAINTAINERCLEANFILES = Makefile.in
|