home *** CD-ROM | disk | FTP | other *** search
- all: sspell
-
- # flags = -gx
-
- cc = cc
-
- .c.o:
- $(cc) $(flags) -c $<
-
- cache.o: cache.c cache.h strfn.h
-
- sspell.o: sspell.c cache.h file.h config.h
-
- file.o: file.h file.c config.h
-
- check.o: check.h check.c config.h
-
- root.o: root.c root.h
-
- string.o: string.c string.h
-
- utility.o: utility.c utility.h
-
- sspell: cache.o file.o sspell.o check.o root.o string.o utility.o
- $(cc) -o sspell $(flags) sspell.o cache.o file.o check.o root.o string.o utility.o
-
- clean:
- rm cache.o file.o sspell.o check.o root.o string.o utility.o
- rm sspell
-