summaryrefslogtreecommitdiff
path: root/usr
diff options
context:
space:
mode:
Diffstat (limited to 'usr')
-rw-r--r--usr/Makefile2
-rw-r--r--usr/fwparam_ibft/Makefile4
2 files changed, 3 insertions, 3 deletions
diff --git a/usr/Makefile b/usr/Makefile
index 41afa63..3d52d49 100644
--- a/usr/Makefile
+++ b/usr/Makefile
@@ -120,7 +120,7 @@ clean:
$(MAKE) $(MFLAGS) -C $(FW_BOOT_DIR) clean
depend:
- gcc $(CFLAGS) -M `ls *.c` > .depend
+ $(CC) $(CFLAGS) -M `ls *.c` > .depend
$(MAKE) $(MFLAGS) -C $(FW_BOOT_DIR) depend
-include .depend
diff --git a/usr/fwparam_ibft/Makefile b/usr/fwparam_ibft/Makefile
index 6739f41..768b573 100644
--- a/usr/fwparam_ibft/Makefile
+++ b/usr/fwparam_ibft/Makefile
@@ -42,11 +42,11 @@ LDFLAGS += -L$(TOPDIR)/libopeniscsiusr -liscsiusr
all: $(OBJS)
clean:
- rm -f $(CLEANFILES) .depend
+ $(RM) $(CLEANFILES) .depend
$(OBJS): prom_parse.tab.h prom_parse.h
depend:
- gcc $(CFLAGS) -M `ls *.c` > .depend
+ $(CC) $(CFLAGS) -M `ls *.c` > .depend
-include .depend