File: makefile.dos

package info (click to toggle)
archie 1.4.1-8.1
  • links: PTS
  • area: non-free
  • in suites: hamm
  • size: 500 kB
  • ctags: 1,025
  • sloc: ansic: 5,898; lisp: 454; makefile: 99
file content (30 lines) | stat: -rw-r--r-- 592 bytes parent folder | download | duplicates (3)
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
28
29
30
#
# Last changed: 11/20/91, v1.2
#
# Makefile for the minimal build for an archie Prospero client.
#.INCLUDE ../../../builtins

OBJS	= aquery.lo	archie.lo	atalloc.lo	dirsend.lo	\
	  get_pauth.lo	get_vdir.lo	perrmesg.lo	procquery.lo	\
	  ptalloc.lo	regex.lo	stcopy.lo	support.lo	\
	  vlalloc.lo	vl_comp.lo
HDRS	= archie.h	pmachine.h	pcompat.h

DEFINES	= -DDEBUG -DNOREGEX -DUSG

CFLAGS	= -Oeclgsz -Gs -Zi -W4 -I. $(DEFINES)

EXE	= archie.exe

all: $(EXE)

$(OBJS): $(HDRS)

$(EXE): $(OBJS) Makefile archie.lnk
	link @archie.lnk
	exepack archie.unp archie.exe

clean:
	+-del *.lo
	+-del *.exe