blob: 845ecb9616a7cccc8ce0dfd3c826b6cf09768564 (
plain)
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
|
diff -urN malsync.orig/Makefile malsync/Makefile
--- malsync.orig/Makefile 2003-05-30 19:42:14.000000000 -0400
+++ malsync/Makefile 2003-08-01 16:29:24.000000000 -0400
@@ -15,10 +15,10 @@
endif
TREETOP = .
-PILOT_LINK_DIR = $(TREETOP)/pilot-link-0.11.7
+PILOT_LINK_DIR = /usr/include/libpisock
CFLAGS = -Wall -g -DMALSYNC -I$(TREETOP)/mal/common \
- -I$(TREETOP)/mal/client/common -I$(PILOT_LINK_DIR)/include \
+ -I$(TREETOP)/mal/client/common -I$(PILOT_LINK_DIR) \
-I$(TREETOP)/mal/client/unix
ifeq ($(PLAT),Darwin)
@@ -73,7 +73,7 @@
$(TARGET): $(OBJS)
$(CC) $(DYNLINK) $(CFLAGS) -o $@ $(OBJS) \
- ${PILOT_LINK_DIR}/libpisock/.libs/libpisock.a $(LINKLIBS)
+ /usr/lib/libpisock.a $(LINKLIBS)
clean:
rm -f $(OBJS) $(TARGET)
|