Initial import
[avr_serial_lcd.git] / tester / Makefile
1 tester := serial_lcd_tester
2 CC := gcc
3
4 all: $(tester).exe
5
6 $(tester).exe: $(tester).c
7         PATH=$(PATH}:/c/cygwin/bin $(CC) -O2 $(tester).c -o $(tester).exe
8
9 clean:
10         @rm -f $(tester).exe $(tester).o *~
11
12 distclean: clean
13