File: Makefile.vs

package info (click to toggle)
sslscan 2.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 716 kB
  • sloc: ansic: 5,580; sh: 353; python: 163; makefile: 138
file content (15 lines) | stat: -rw-r--r-- 516 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
LFLAGS=/nologo /dynamicbase /highentropyva /nxcompat /opt:ref /subsystem:console /ltcg
CFLAGS=/nologo /GL /GS /Gs0 /Gw /MT /Ox -DVERSION="\"1.9.8 Windows 64-bit (VS)\""

all: sslscan.exe

sslscan.obj: sslscan.c
	cl.exe $(CFLAGS) /I $(OPENSSL_PATH)/include /c sslscan.c

sslscan.exe: sslscan.obj
	link.exe $(LFLAGS) /out:sslscan.exe sslscan.obj $(OPENSSL_PATH)/out32/libeay32.lib $(OPENSSL_PATH)/out32/ssleay32.lib advapi32.lib gdi32.lib user32.lib ws2_32.lib

clean:
	del sslscan.obj sslscan.exe

rebuild: clean all