summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlejandro Colomar <alx@kernel.org>2023-05-20 21:07:13 +0200
committerAlejandro Colomar <alx@kernel.org>2023-05-20 21:07:13 +0200
commit844d55001449f261c6f2de1ff059a606932a50ca (patch)
treee5c83596eee29508935c2a3c9d99b69ade844085
parent2bed52f1c858e6b4289a03d5bce05cbe7b78b6f9 (diff)
Makefile: ffix
Signed-off-by: Alejandro Colomar <alx@kernel.org>
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index ca4f519..92e7192 100644
--- a/Makefile
+++ b/Makefile
@@ -71,23 +71,23 @@ $(I): $(builddir)/%.i: $(srcdir)/%.c Makefile | $$(@D)/
$(CPP) $(CPPFLAGS) -o $@ $<
$(ASM): %.s: %.i Makefile | $$(@D)/
- $(info CC $@)
+ $(info CC $@)
$(CC) -S $(CFLAGS) -o $@ $<
$(OBJ): %.o: %.s Makefile | $$(@D)/
- $(info AS $@)
+ $(info AS $@)
$(AS) $(ASFLAGS) -o $@ $<
$(BIN): $(OBJ) Makefile | $$(@D)/
- $(info LD $@)
+ $(info LD $@)
$(LD) $(LDFLAGS) -o $@ $(OBJ) $(LIBS)
$(BUILDDIRS): %/: | $$(dir %)
- $(info MKDIR $@)
+ $(info MKDIR $@)
$(MKDIR) $@
$(builddir)/:
- $(info MKDIR $@)
+ $(info MKDIR $@)
$(MKDIR) $@