blob: 1485fd3efdffa540cbc81c32f5d5205542fe29e9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
--- sio/Makefile.in.orig Fri Jun 28 03:09:26 2002
+++ sio/Makefile.in Fri Jul 5 11:26:55 2002
@@ -64,15 +64,19 @@
chmod a+r $(PREFIX)/lib/$(LIB) $(PREFIX)/include/sio.h $(PREFIX)/include/usio.h
-@/bin/ls -l $(PREFIX)/lib/$(LIB) $(PREFIX)/include/sio.h $(PREFIX)/include/usio.h
+dynamic: $(LIBSO)
+
shared: $(LIBSO)
so: $(LIBSO)
$(LIBSO): $(SOBJS)
- /bin/rm -f $(LIBSO)
- gcc -shared -Wl,-soname,$(LIBSO) -o $(LIBSO) $(SOBJS)
- chmod a+r $(LIB) sio.h usio.h
- -@/bin/ls -l $(LIBSO)
+ /bin/rm -f $(LIBSO) $(LIBSOS)
+ $(CC) -shared "-Wl,-soname,$(LIBSO)" -o "$(LIBSO)" $(SOBJS)
+ $(CC) -shared -Wl,-x -o $(LIBSO) `lorder $(SOBJS) | tsort -q`
+ chmod a+r $(LIBSO) sio.h usio.h
+ /bin/ln -s "$(LIBSO)" "$(LIBSOS)"
+ -@/bin/ls -l "$(LIBSOS)" "$(LIBSO)"
soinstall: $(LIBSO)
cp $(LIBSO) $(PREFIX)/lib/$(LIBSO)
|