Use POSIX preferred (and easier to read) $() form rather than ``
[madwifi/.git] / ath_hal / Makefile
index 994af47174293403d2e03d0227fc1f9bd606101d..d2722c057dbb6eddae63a3f1156cd865f6ff780c 100644 (file)
@@ -67,6 +67,7 @@ endif
 
 -include $(TOPDIR)/Rules.make
 
+.PHONY: all
 all:
        $(MAKE) -C $(KERNELPATH) SUBDIRS=$(shell pwd) modules
 
@@ -84,12 +85,13 @@ ifdef LINUX24
 else
        $(call if_changed,uudecode)
 endif
-       # Replace as many hashed names as possible with meaningful
-       # ones in the symbol table of the binary kernel module for HAL.
+# Replace as many hashed names as possible with meaningful
+# ones in the symbol table of the binary kernel module for HAL.
        $(filter-out -O binary -S,$(OBJCOPY)) \
-               `cat $(TOP)/scripts/hal_unmangle.objcopy` \
+               $$(cat $(TOP)/scripts/hal_unmangle.objcopy) \
                $(obj)/$(TARGET).hal.o
 
+.PHONY: install
 install:
        test -d $(DESTDIR)/$(KMODPATH) || mkdir -p $(DESTDIR)/$(KMODPATH)
        install -m 0644 ath_hal.$(KMODSUF) $(DESTDIR)/$(KMODPATH)
@@ -97,9 +99,10 @@ ifneq ($(strip $(ALQ)),0)
        install -m 0644 alq.$(KMODSUF) $(DESTDIR)/$(KMODPATH)
 endif
 
+.PHONY: clean
 clean:
        rm -f *~ *.o *.ko *.mod.c uudecode .*.cmd
-       rm -f .depend .version .*.o.flags .*.o.d
+       rm -f modules.order .depend .version .*.o.flags .*.o.d
        rm -rf .tmp_versions
 
 ath_hal.o: $(addprefix $(obj)/,$(ath_hal-objs))