3f4886d988
For instance eeprom.o is still around after "make clean" without this change.
11 lines
151 B
Makefile
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 $@ $?
|