dc4bb1af96
Edit win32/config.mk to set the paths to your openssl and zlib headers and libraries. Then, from the root of the tree: nmake -f NMakefile voila.
16 lines
239 B
Makefile
16 lines
239 B
Makefile
|
|
all-sub: $(INTDIR) all
|
|
|
|
clean-sub: clean
|
|
|
|
$(INTDIR):
|
|
!if "$(SRCDIR)" == ""
|
|
@if not exist $(TARGET) mkdir $(TARGET)
|
|
!endif
|
|
@if not exist $(INTDIR) mkdir $(INTDIR)
|
|
|
|
{$(SUBDIR)}.c{$(INTDIR)}.obj::
|
|
$(CC) -c $(CFLAGS) /Fo"$(INTDIR)\\" $<
|
|
|
|
|