File: Makefile.msvcp

package info (click to toggle)
sma 1.4-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 596 kB
  • sloc: ansic: 6,291; sh: 163; perl: 148; makefile: 63
file content (27 lines) | stat: -rw-r--r-- 649 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#
# $Id: Makefile.msvcp,v 1.1 2001/10/26 07:54:37 jt Exp $
#
# Makefile.msvcp -- makefile for MS Visual C++
# Use the nmake utility provided with the compiler
#

BINDIR = C:\sma

CC	= cl
CFLAGS	= -I./regex -DUSE_REGEXP
PROG	= sma.exe
OBJS    = sma.obj getopt.obj parse.obj utils.obj hash.obj html.obj \
	  ascii.obj init.obj regex/regcomp.obj regex/regexec.obj \
	  regex/regfree.obj regex/regerror.obj

$(PROG): $(OBJS)
	 $(CC) $(CFLAGS) -o $(PROG) sma.obj getopt.obj parse.obj \
	 utils.obj hash.obj html.obj ascii.obj init.obj regcomp.obj \
	 regexec.obj regfree.obj regerror.obj

clean:
	del $(PROG)
	del *.obj

install:
	copy $(PROG) $(BINDIR)