You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
211 B
Makefile
17 lines
211 B
Makefile
4 weeks ago
|
CC=gcc
|
||
|
CFLAGS=-I.
|
||
|
DEPS =
|
||
|
OBJ = main.o htu21d.o
|
||
|
EXTRA_LIBS=-li2c
|
||
|
|
||
|
%.o: %.c $(DEPS)
|
||
|
$(CC) -c -o $@ $< $(CFLAGS)
|
||
|
|
||
|
HTU21D: $(OBJ)
|
||
|
$(CC) -o $@ $^ $(CFLAGS) $(EXTRA_LIBS)
|
||
|
|
||
|
.PHONY: clean
|
||
|
|
||
|
clean:
|
||
|
rm -f HTU21D $(OBJ)
|