Make sure all .c->.o builds depend on all .h files
This commit is contained in:
parent
a2f3d807f8
commit
c0f839c40d
4
Makefile
4
Makefile
|
@ -21,8 +21,8 @@ demo: libtermkey.so demo.c
|
||||||
libtermkey.so: termkey.o driver-csi.o driver-ti.o
|
libtermkey.so: termkey.o driver-csi.o driver-ti.o
|
||||||
$(LD) -shared -soname=$(SONAME) -o $@ $^ -lncurses
|
$(LD) -shared -soname=$(SONAME) -o $@ $^ -lncurses
|
||||||
|
|
||||||
%.o: %.c
|
%.o: %.c termkey.h termkey-internal.h
|
||||||
$(CC) $(CFLAGS) $(CFLAGS_DEBUG) -Wall -std=c99 -fPIC -o $@ -c $^
|
$(CC) $(CFLAGS) $(CFLAGS_DEBUG) -Wall -std=c99 -fPIC -o $@ -c $<
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
|
|
Loading…
Reference in New Issue