2021-07-02 07:54:32 -05:00
|
|
|
--- Makefile.orig 2005-10-17 19:41:01.000000000 -0500
|
|
|
|
|
+++ Makefile 2021-07-02 07:45:32.000000000 -0500
|
|
|
|
|
@@ -10,13 +10,11 @@
|
2006-10-15 06:11:10 +00:00
|
|
|
# debugging
|
|
|
|
|
# DFLAGS = -DTEST -DDEBUG
|
|
|
|
|
DFLAGS = -DGAPING_SECURITY_HOLE
|
|
|
|
|
-CFLAGS = -O
|
|
|
|
|
+CFLAGS ?= -O
|
|
|
|
|
XFLAGS = # xtra cflags, set by systype targets
|
|
|
|
|
XLIBS = # xtra libs if necessary?
|
|
|
|
|
# -Bstatic for sunos, -static for gcc, etc. You want this, trust me.
|
|
|
|
|
STATIC =
|
|
|
|
|
-CC = cc $(CFLAGS)
|
|
|
|
|
-LD = $(CC) -s # linker; defaults to stripped executables
|
|
|
|
|
o = o # object extension
|
|
|
|
|
|
2021-07-02 07:54:32 -05:00
|
|
|
ALL = cryptcat
|
2006-10-15 06:11:10 +00:00
|
|
|
@@ -28,8 +26,8 @@
|
|
|
|
|
|
|
|
|
|
### HARD TARGETS
|
|
|
|
|
|
|
|
|
|
-cryptcat: netcat.c farm9crypt.o twofish2.o
|
|
|
|
|
- $(LD) $(DFLAGS) $(XFLAGS) $(STATIC) -o cryptcat netcat.c farm9crypt.o twofish2.o $(XLIBS)
|
|
|
|
|
+cryptcat: netcat.o farm9crypt.o twofish2.o
|
2021-07-02 07:54:32 -05:00
|
|
|
+ $(CXX) $(CXXFLAGS) $(LDFLAGS) -o $@ $^ $(XLIBS)
|
2006-10-15 06:11:10 +00:00
|
|
|
|
|
|
|
|
nc-dos:
|
|
|
|
|
@echo "DOS?! Maybe someday, but not now"
|
|
|
|
|
@@ -86,6 +84,9 @@
|
2005-10-30 15:28:54 +00:00
|
|
|
make -e $(ALL) $(MFLAGS) XFLAGS='-DFREEBSD' STATIC=-static \
|
|
|
|
|
XLIBS='-lstdc++'
|
|
|
|
|
|
|
|
|
|
+darwin:
|
2021-07-02 07:54:32 -05:00
|
|
|
+ make -e $(ALL) $(MFLAGS) XFLAGS='-DFREEBSD' XLIBS='-lresolv'
|
2005-10-30 15:28:54 +00:00
|
|
|
+
|
|
|
|
|
bsdi:
|
|
|
|
|
make -e $(ALL) $(MFLAGS) XFLAGS='-DBSDI' STATIC=-Bstatic
|
|
|
|
|
|
2006-10-15 06:11:10 +00:00
|
|
|
@@ -115,10 +116,8 @@
|
|
|
|
|
make -e $(ALL) $(MFLAGS) XFLAGS='-DNEXT' STATIC=-Bstatic
|
|
|
|
|
|
|
|
|
|
farm9crypt.o: farm9crypt.cc farm9crypt.h
|
|
|
|
|
- ${CC} -c farm9crypt.cc
|
|
|
|
|
|
|
|
|
|
twofish2.o: twofish2.cc twofish2.h
|
|
|
|
|
- ${CC} -c twofish2.cc
|
|
|
|
|
|
|
|
|
|
# start with this for a new architecture, and see what breaks.
|
|
|
|
|
generic:
|