# # $Id: Makefile.w32,v 1.2 2001/10/29 10:14:37 jt Exp $ # # Makefile.w32 -- makefile for mingw # BINDIR = C:\sma CC = gcc CFLAGS = -Wall -O -I./regex -DUSE_REGEXP PROG = sma OBJS = sma.o getopt.o parse.o utils.o hash.o html.o ascii.o init.o \ regex/regcomp.o regex/regexec.o regex/regfree.o regex/regerror.o $(PROG): $(OBJS) $(CC) $(CFLAGS) -o $(PROG) $(OBJS) clean: del $(PROG).exe del *.o del regex\*.o install: copy $(PROG) $(BINDIR)