diff options
author | Ian C <ianc@noddybox.co.uk> | 2003-12-12 01:15:38 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2003-12-12 01:15:38 +0000 |
commit | 9d6402a5215920987fb10e5b35f35b93f1c6f725 (patch) | |
tree | 396f85aa1c1ee34ceeb34804cfac8a459920c7ab /src | |
parent | c27e69e3e6da5d194fadc4c657e958cfda15d561 (diff) |
Fixed misspelled use of CFLAGS
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index 77278b9..e1ef0ce 100644 --- a/src/Makefile +++ b/src/Makefile @@ -18,7 +18,7 @@ # # ------------------------------------------------------------------------- # -# $Id: Makefile,v 1.5 2003-12-09 01:31:46 ianc Exp $ +# $Id: Makefile,v 1.6 2003-12-12 01:15:38 ianc Exp $ # # CFLAGS assumes that gcc is being used - simply comment out if required @@ -43,7 +43,7 @@ OBJECTS = kbs.o \ util.o $(TARGET): $(OBJECTS) - $(CC) $(CLAGS) -o $(TARGET) $(OBJECTS) + $(CC) $(CFLAGS) -o $(TARGET) $(OBJECTS) clean: rm -f $(TARGET) $(OBJECTS) core |