home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-11-07 | 1.2 KB | 64 lines | [TEXT/R*ch] |
- CC = g++
- CFLAGS = -ansi -pedantic -Wall -O2
-
- COLSOBJECTS = KPString.o cols.o
- DEPSOBJECTS = KPString.o deps.o
- SPELLCHECKOBJECTS = KPString.o spellcheck.o
-
- all: cols deps spellcheck
-
- cols: $(COLSOBJECTS)
- $(CC) $(CFLAGS) $(COLSOBJECTS) -o cols
- strip cols
-
- deps: $(DEPSOBJECTS)
- $(CC) $(CFLAGS) $(DEPSOBJECTS) -o deps
- strip deps
-
- spellcheck: $(SPELLCHECKOBJECTS)
- $(CC) $(CFLAGS) $(SPELLCHECKOBJECTS) -o spellcheck
- strip spellcheck
-
- clean:
- rm -f $(COLSOBJECTS) $(DEPSOBJECTS) $(SPELLCHECKOBJECTS)
-
-
- ###########################################################
- #
- # File dependencies generated by "deps".
- # Fri Oct 14 04:48:41 1994
- #
- ###########################################################
-
- cols.o: \
- ../KPArray.h \
- ../KPList.h \
- ../KPString.h \
- ../KPbasic.h \
- cols.cxx
- $(CC) $(CFLAGS) -c cols.cxx
-
- deps.o: \
- ../KPList.h \
- ../KPSet.h \
- ../KPString.h \
- ../KPbasic.h \
- deps.cxx
- $(CC) $(CFLAGS) -c deps.cxx
-
- spellcheck.o: \
- ../KPList.h \
- ../KPSet.h \
- ../KPString.h \
- ../KPbasic.h \
- spellcheck.cxx
- $(CC) $(CFLAGS) -c spellcheck.cxx
-
- KPString.o: \
- ../KPList.h \
- ../KPString.cxx \
- ../KPString.h \
- ../KPbasic.h
- $(CC) $(CFLAGS) -c ../KPString.cxx
-
-