File: Makefile.w32

package info (click to toggle)
sma 1.4-3.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 624 kB
  • sloc: ansic: 6,291; sh: 163; perl: 148; makefile: 20
file content (24 lines) | stat: -rw-r--r-- 455 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#
# $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)