home *** CD-ROM | disk | FTP | other *** search
Makefile | 1999-06-06 | 387 b | 28 lines |
- #
- # makefile for searchhtml
- #
-
- CC = gcc
-
- LDFLAGS =
- CFLAGS = -noixemul -Wall -mstackextend
-
- all: searchhtml
-
- searchhtml: report.o dirlist.o gui.o get_title.o main.c
- $(CC) $(CFLAGS) $^ -o $@
-
- report.o: report.c
- $(CC) $(CFLAGS) $^ -c
-
- dirlist.o: dirlist.c
- $(CC) $(CFLAGS) $^ -c
-
- gui.o: gui.c gui.h
- $(CC) $(CFLAGS) $^ -c
-
- get_title.o: get_title.c
- $(CC) $(CFLAGS) $^ -c
-
-
-