From db212811293f91e0f1147eb57e5f6d5df2db10ef Mon Sep 17 00:00:00 2001 From: Nicolas Schodet Date: Mon, 29 Nov 2010 23:07:46 +0100 Subject: digital/avr/modules/twi: cleanup TWI module, refs #29, closes #90 - use contexts - changed interface - merge test programs - share polling mechanism - prepare place for other drivers - add callback system - use english comments --- digital/avr/modules/twi/test/Makefile | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 digital/avr/modules/twi/test/Makefile (limited to 'digital/avr/modules/twi/test/Makefile') diff --git a/digital/avr/modules/twi/test/Makefile b/digital/avr/modules/twi/test/Makefile deleted file mode 100644 index 1af68de3..00000000 --- a/digital/avr/modules/twi/test/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Quick dirty makefile to help you build the test program for twi. -# It is required to clean before building each program because they share the -# same object with different defines. -# Files are copied in *.keep.hex. -all: subclean - # Slave - $(MAKE) -f Makefile.slave - cp test_twi_sl.hex test_twi_sl.keep.hex - $(MAKE) -f Makefile.slave clean - # Master - $(MAKE) -f Makefile.master - cp test_twi_master.hex test_twi_master.keep.hex - $(MAKE) -f Makefile.master clean - -subclean: - # General cleaning - $(MAKE) -f Makefile.slave clean - $(MAKE) -f Makefile.master clean - -clean: subclean - rm -f test_twi_master.keep.hex test_twi_sl.keep.hex -- cgit v1.2.3