diff options
author | Erik Troan <ewt@redhat.com> | 2000-05-09 16:26:45 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2000-05-09 16:26:45 +0000 |
commit | b085dbf9fa656f8eeefb7eeaa6c532647f1cf388 (patch) | |
tree | 4e877f88ec463af51627d5aa361edddcf52f3e3d /Makefile | |
parent | 702e6975d40b891f3a6699c54d5ef5ab9fa62f91 (diff) | |
download | anaconda-b085dbf9fa656f8eeefb7eeaa6c532647f1cf388.tar.gz anaconda-b085dbf9fa656f8eeefb7eeaa6c532647f1cf388.tar.xz anaconda-b085dbf9fa656f8eeefb7eeaa6c532647f1cf388.zip |
fixed dependency crap
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |