diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2017-11-05 14:01:48 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2017-11-12 22:56:18 +0100 |
commit | c5b0c7e5aa15cd14c1fd47fe2404a71ef6578543 (patch) | |
tree | a15bee2fa1e798ed206590ad11b65ac0ea39ee90 /Makefile | |
parent | 21be61692cefc489883822c7f718de1fe904fefe (diff) |
ptunnel-ng:
* base64 encode prep
* option parsing
* refactoring
* using strict aliasing
Diffstat (limited to 'Makefile')
-rwxr-xr-x | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3,14 +3,14 @@ # ptunnel.exe target added by Mike Miller, mike@mikeage.net CC = gcc -CFLAGS = -Wall -g +CFLAGS = -Wall -g -fstrict-aliasing LDOPTS = -lpthread -lpcap -PT_OBJS = ptunnel.o md5.o +PT_OBJS = options.o ptunnel.o md5.o base64.o WIN32_CC = mingw32-gcc WIN32_CFLAGS = -g -Wall -DWIN32 -I"c:\Program Files\WpdPack\Include" WIN32_LDOPTS = -lwpcap -lwsock32 -L"c:\Program Files\WpdPack\Lib" -WIN32_PT_OBJS = ptunnel.obj md5.obj +WIN32_PT_OBJS = options.obj ptunnel.obj md5.obj base64.obj prefix = $(DESTDIR)/usr bindir = $(prefix)/sbin |