view nt/minitar.mak @ 618:16ff693bd768

[xemacs-hg @ 2001-06-19 01:29:35 by ben] window.c: We can't actually zero out everything in the window when deleting it. set-window-configuration assumes that various slots of the deleted window are still accurate.
author ben
date Tue, 19 Jun 2001 01:29:37 +0000
parents 74fd4e045ea6
children 697ef44129c6
line wrap: on
line source

ZLIB=\path\to\zlib
LIB_SRC=.
NT=.

all: $(LIB_SRC)\minitar.exe

$(LIB_SRC)\minitar.exe: $(LIB_SRC)\minitar.obj
	cl -o $@ $(LIB_SRC)\minitar.obj $(ZLIB)\zlib.lib

$(LIB_SRC)\minitar.obj: $(NT)\minitar.c
	cl -Fo$@ -c $(NT)\minitar.c -I $(ZLIB)