From 5596474bcc6105ef7226d3c6685d953ef670907a Mon Sep 17 00:00:00 2001 From: "Frank Singleton, VK3FCS" Date: Thu, 27 Jul 2000 00:26:22 +0000 Subject: [PATCH] added ../common as object path git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@26 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- ft747/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ft747/Makefile b/ft747/Makefile index 7084a1df9..e023eb701 100644 --- a/ft747/Makefile +++ b/ft747/Makefile @@ -4,7 +4,7 @@ # # creates: libft747.so # -# $Id: Makefile,v 1.3 2000-07-18 23:28:01 frank Exp $ +# $Id: Makefile,v 1.4 2000-07-27 00:26:22 javabear Exp $ # # # .h files go in INSTALL_INCLUDEDIR @@ -15,6 +15,7 @@ INSTALL_LIBDIR = ./lib/ INSTALL_INCLUDEDIR = ./include/ +INCLUDE = -I/usr/include -I/usr/local/include -I. -I../common LIB_NAME = libft747.so LIB_SONAME = libft747.so.1 @@ -30,7 +31,7 @@ all: lib .PHONY: lib lib: - $(CC) $(CFLAGS) -c $(LIB_SRC) + $(CC) $(CFLAGS) $(INCLUDE) -c $(LIB_SRC) $(CC) -shared -Wl,-soname,$(LIB_SONAME) -o $(LIB_RELEASE) $(LIB_OBJECTS) -lc # install header and lib