--- libcli/Makefile.orig Fri Feb 14 13:29:46 2003 +++ libcli/Makefile Fri Feb 14 13:30:11 2003 @@ -1,5 +1,3 @@ -CFLAGS = -Wall -O3 - OBJS = cli.o cli_history.o all: libcli.a libcli.so test-static test-shared @@ -9,12 +7,12 @@ libcli.a: $(OBJS) ar rcs libcli.a cli*.o libcli_p.a: - cc -pg -c cli.c - cc -pg -c cli_history.c + $(CC) -pg -c cli.c + $(CC) -pg -c cli_history.c ar rcs libcli_p.a cli*.o libcli.so: $(OBJS) - cc -shared cli*.o -o libcli.so $(CFLAGS) $(LIBS) + $(CC) -shared cli*.o -o libcli.so $(CFLAGS) $(LIBS) test-static: test.o libcli.a - cc -o test-static test.o libcli.a $(CFLAGS) $(LIBS) + $(CC) -o test-static test.o libcli.a $(CFLAGS) $(LIBS) test-shared: test.o libcli.so - cc -o test-shared test.o -L. -lcli $(CFLAGS) $(LIBS) + $(CC) -o test-shared test.o -L. -lcli $(CFLAGS) $(LIBS)