Skip to content
Snippets Groups Projects
Commit 8d00b8f9 authored by Jeroen Vreeken's avatar Jeroen Vreeken
Browse files

Don't generate dependancies to system headers

parent 5f3aa23c
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@ LIBTOOL=libtool
%.o : %.c
@echo " CC $<"
@$(CC) -MD $(CFLAGS) -c $<
@$(CC) -MMD $(CFLAGS) -c $<
%: %.o
@echo " LD $@"
......@@ -18,7 +18,7 @@ LIBTOOL=libtool
%.lo: %.c
@echo "LT CC $<"
@${LIBTOOL} --quiet --mode=compile --tag=CC $(CC) -MD $(CFLAGS) -c $<
@${LIBTOOL} --quiet --mode=compile --tag=CC $(CC) -MMD $(CFLAGS) -c $<
%.la:
@echo "LIBTOOL $@"
......
......@@ -10,7 +10,7 @@ LIBTOOL=libtool
%.o : %.c
@echo " CC $<"
@$(CC) -MD $(CFLAGS) -c $<
@$(CC) -MMD $(CFLAGS) -c $<
%: %.o
@echo " LD $@"
......@@ -18,7 +18,7 @@ LIBTOOL=libtool
%.lo: %.c
@echo "LT CC $<"
@${LIBTOOL} --quiet --mode=compile --tag=CC $(CC) -MD $(CFLAGS) -c $<
@${LIBTOOL} --quiet --mode=compile --tag=CC $(CC) -MMD $(CFLAGS) -c $<
%.la:
@echo "LIBTOOL $@"
......
......@@ -10,10 +10,10 @@ LIBTOOL=libtool
%.o : %.c
@echo "LT CC $<"
@${LIBTOOL} --quiet --mode=compile --tag=CC $(CC) -MD $(CFLAGS) -c $<
@${LIBTOOL} --quiet --mode=compile --tag=CC $(CC) -MMD $(CFLAGS) -c $<
# @echo " CC $<"
# @$(CC) -MD $(CFLAGS) -c $<
# @$(CC) -MMD $(CFLAGS) -c $<
%: %.o
@echo " LD $@"
......@@ -21,7 +21,7 @@ LIBTOOL=libtool
%.lo: %.c
@echo "LT CC $<"
@${LIBTOOL} --quiet --mode=compile --tag=CC $(CC) -MD $(CFLAGS) -c $<
@${LIBTOOL} --quiet --mode=compile --tag=CC $(CC) -MMD $(CFLAGS) -c $<
%.la:
@echo "LIBTOOL $@"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment