summaryrefslogtreecommitdiffstats
path: root/isys/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'isys/Makefile')
-rw-r--r--isys/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/isys/Makefile b/isys/Makefile
new file mode 100644
index 000000000..91c419174
--- /dev/null
+++ b/isys/Makefile
@@ -0,0 +1,12 @@
+
+CFLAGS = -I/usr/include/python1.5
+OBJECTS = isys.o nfsmount.o dns.o mount_clnt.o mount_xdr.o imount.o
+LOADLIBES = -lresolv
+
+all: _isys.so
+
+_isys.so: $(OBJECTS)
+ gcc -shared -o $@ $(OBJECTS) $(LOADLIBES)
+
+clean:
+ rm -f *.o $(TARGET) $(OBJECTS)