summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2000-05-09 16:26:45 +0000
committerErik Troan <ewt@redhat.com>2000-05-09 16:26:45 +0000
commitb085dbf9fa656f8eeefb7eeaa6c532647f1cf388 (patch)
tree4e877f88ec463af51627d5aa361edddcf52f3e3d /Makefile
parent702e6975d40b891f3a6699c54d5ef5ab9fa62f91 (diff)
downloadanaconda-b085dbf9fa656f8eeefb7eeaa6c532647f1cf388.tar.gz
anaconda-b085dbf9fa656f8eeefb7eeaa6c532647f1cf388.tar.xz
anaconda-b085dbf9fa656f8eeefb7eeaa6c532647f1cf388.zip
fixed dependency crap
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index c463f221f..7422e5daf 100644
--- a/Makefile
+++ b/Makefile
@@ -33,6 +33,10 @@ xmouse.so: xmouse.c
gcc -Wall -o xmouse.o -fPIC -I/usr/X11R6/include -I/usr/include/python1.5 -I /usr/include/python1.5 -c xmouse.c
gcc -o xmouse.so -shared xmouse.o /usr/X11R6/lib/libXxf86misc.a -L/usr/X11R6/lib -lX11 -lXext
+depend:
+ rm -f *.o *.so *.pyc
+ for d in $(SUBDIRS); do make -C $$d depend; done
+
clean:
rm -f *.o *.so *.pyc
for d in $(SUBDIRS); do make -C $$d clean; done