eeprog/Makefile
Antonio Ospite 3f4886d988 Makefile: remove _all_ the object files in the clean target
For instance eeprom.o is still around after "make clean" without this
change.
2014-02-17 23:26:58 +01:00

11 lines
151 B
Makefile

CFLAGS=-g -I. -Wall -O2
all: eeprog
clean:
rm -f eeprog *.o
eeprog: eeprog.o 24cXX.o
eeprog-static: eeprog.o 24cXX.o
$(CC) -static -o $@ $?