2020-11-08 07:33:02 +00:00
|
|
|
# crossfire: distributed brute force infrastructure
|
|
|
|
#
|
|
|
|
# Copyright (C) 2020 haskal
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
2020-12-29 08:12:48 +00:00
|
|
|
.PHONY: all clean mrproper
|
2020-11-08 07:33:02 +00:00
|
|
|
|
2020-11-15 07:28:09 +00:00
|
|
|
APP_NAME=crossfire-agent
|
2020-12-13 01:28:15 +00:00
|
|
|
RKT_NAME=$(APP_NAME).rkt
|
2020-11-08 07:33:02 +00:00
|
|
|
|
2020-11-15 07:28:09 +00:00
|
|
|
MONOCYPHER_VERSION=3.1.1
|
2020-12-13 02:25:01 +00:00
|
|
|
RACKET_VERSION=7.9
|
2020-11-08 07:33:02 +00:00
|
|
|
|
2020-11-15 23:54:03 +00:00
|
|
|
TARGET_ARCH=$(shell $(CC) -dumpmachine)
|
|
|
|
|
2020-11-08 07:33:02 +00:00
|
|
|
####################################################################################################
|
|
|
|
|
2020-11-15 23:54:03 +00:00
|
|
|
ARCH_DIR=arch_$(TARGET_ARCH)
|
2020-12-29 08:12:48 +00:00
|
|
|
APP_CFLAGS=-pipe -fPIC -O3 -DAPP_NAME='"$(APP_NAME)"' -DAPP_ARCH='"$(TARGET_ARCH)"'
|
|
|
|
APP_LDFLAGS=-static -ldl -lm -lpthread
|
|
|
|
# musl needs -lucontext
|
2020-12-13 02:25:01 +00:00
|
|
|
|
2020-11-15 23:54:03 +00:00
|
|
|
all: $(ARCH_DIR)/$(APP_NAME)
|
2020-11-08 07:33:02 +00:00
|
|
|
|
2020-12-29 08:12:48 +00:00
|
|
|
include dependencies.mk
|
|
|
|
|
2020-11-08 07:33:02 +00:00
|
|
|
# main build
|
2020-12-29 08:12:48 +00:00
|
|
|
$(ARCH_DIR)/$(APP_NAME): main_bc.c app.o vnd-deps
|
2020-11-15 23:54:03 +00:00
|
|
|
[ -d $(ARCH_DIR) ] || mkdir -p $(ARCH_DIR)
|
2020-12-29 08:12:48 +00:00
|
|
|
$(CC) -o $@ $(APP_CFLAGS) $(VND_CFLAGS) main_bc.c app.o \
|
|
|
|
$(VND_LDFLAGS) $(APP_LDFLAGS)
|
2020-11-15 07:28:09 +00:00
|
|
|
|
2020-12-13 02:25:01 +00:00
|
|
|
# this is faster than --c-mods by a lot
|
|
|
|
# it's potentially less portable but works on GNU ld and probably lld too
|
|
|
|
app.o: app.zo
|
|
|
|
$(LD) -r -b binary $< -o $@
|
|
|
|
|
|
|
|
app.zo: $(RKT_NAME)
|
|
|
|
raco ctool --mods $@ $<
|
|
|
|
|
|
|
|
clean:
|
2020-12-29 08:12:48 +00:00
|
|
|
$(RM) $(ARCH_DIR)/$(APP_NAME) *.zo *.o
|
2020-12-13 02:25:01 +00:00
|
|
|
|
|
|
|
mrproper: clean
|