summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-02-17 01:16:30 +0000
committerMatt Wilson <msw@redhat.com>2000-02-17 01:16:30 +0000
commit63ef34268b01c4534da2de02b4db01a21ec4ba1b (patch)
treec495ac5e21a686bcabef8a82b39e238567c1bc7f /Makefile
parentb5c6f3a13a3177768d16317880f4487a9e87fe56 (diff)
downloadanaconda-63ef34268b01c4534da2de02b4db01a21ec4ba1b.tar.gz
anaconda-63ef34268b01c4534da2de02b4db01a21ec4ba1b.tar.xz
anaconda-63ef34268b01c4534da2de02b4db01a21ec4ba1b.zip
workaround for serial mice
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index f744de549..14292616f 100644
--- a/Makefile
+++ b/Makefile
@@ -36,6 +36,10 @@ _xkb.so: xkb.c
gcc -Wall -o _xkb.o -fPIC -I/usr/include/python1.5 `gtk-config --cflags gtk` -c xkb.c
gcc -o _xkb.so -shared _xkb.o /usr/X11R6/lib/libxkbfile.a `gtk-config --libs gtk`
+xmouse.so: xmouse.c
+ gcc -Wall -o xmouse.o -fPIC -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
+
clean:
rm -f *.o *.so *.pyc
for d in $(ALLSUBDIRS); do make TOPDIR=../$(TOPDIR) -C $$d clean; done