Add $(obj)/ to the dependencies of ath_hal.o

Otherwise, $(TARGET).hal.o is not built for Linux 2.4 kernels.  The rule
for ath_hal.o is for Linux 2.4 only and should not affect Linux 2.6
builds.


git-svn-id: http://madwifi-project.org/svn/madwifi/trunk@3604 0192ed92-7a03-0410-a25b-9323aeb14dbd
This commit is contained in:
proski 2008-05-05 12:05:10 +00:00
parent 2913278884
commit 1941f3990b
1 changed files with 1 additions and 1 deletions

View File

@ -102,6 +102,6 @@ clean:
rm -f .depend .version .*.o.flags .*.o.d
rm -rf .tmp_versions
ath_hal.o: $(ath_hal-objs)
ath_hal.o: $(addprefix $(obj)/,$(ath_hal-objs))
$(LD) $(LDFLAGS) -o ath_hal.$(KMODSUF) -r $(ath_hal-objs)