SSH Daemon Project
public
Read
Owner: themaster
Branch: main
Commits: 2
Updated: 2026-04-19 00:20
Git CLI clone URL
git clone https://www.xt-emporium.com/git/ssh-daemon-project.git
Fullscreen desktop URL
Code
Commits
History
Branches
Bug Reports
Discussions
Compare
Settings
ssh-daemon-project
/
Makefile.elks
File editor
TOPDIR ?= ../.. CC = ia16-elf-gcc OBJDIR = obj-elks DBCLIENT = dbclient CPPFLAGS = -I. -I src -I libtomcrypt/src/headers -DLOCALOPTIONS_H_EXISTS -DDROPBEAR_CLIENT -DDROPBEAR_ELKS_WEAK_RANDOM=1 CFLAGS = -mcmodel=medium -melks-libc -mtune=i8086 -Wall -Os \ -fomit-frame-pointer -fno-strict-overflow -Wno-pointer-sign DBCLIENT_SRCS = \ dbutil buffer dbhelpers signkey dbrandom queue atomicio compat fake-rfc2553 \ ltc_prng crypto_desc curve25519 ed25519 dbmalloc common-session packet \ common-algo common-kex common-channel common-chansession termcodes \ loginrec listener process-packet common-runopts circbuffer list netio \ chachapoly kex-x25519 cli-main cli-auth cli-authpasswd cli-authpubkey \ cli-kex cli-session cli-runopts cli-chansession cli-channel cli-authinteract LTC_SRCS = \ hashes/sha2/sha256 hashes/sha2/sha512 hashes/helper/hash_memory \ mac/hmac/hmac_init mac/hmac/hmac_process mac/hmac/hmac_done \ mac/poly1305/poly1305 misc/base64/base64_encode misc/base64/base64_decode \ misc/crypt/crypt_argchk misc/crypt/crypt_find_hash \ misc/crypt/crypt_hash_descriptor misc/crypt/crypt_hash_is_valid \ misc/crypt/crypt_register_hash misc/zeromem \ stream/chacha/chacha_setup stream/chacha/chacha_ivctr64 \ stream/chacha/chacha_crypt stream/chacha/chacha_keystream DBCLIENT_OBJS = $(addprefix $(OBJDIR)/,$(addsuffix .o,$(DBCLIENT_SRCS))) LTC_OBJS = $(addprefix $(OBJDIR)/ltc/,$(addsuffix .o,$(LTC_SRCS))) .PHONY: all clean all: $(DBCLIENT) $(DBCLIENT): default_options_guard.h $(DBCLIENT_OBJS) $(LTC_OBJS) $(CC) -mcmodel=medium -melks-libc -mtune=i8086 -maout-heap=8192 -maout-stack=2048 -o $@ $(DBCLIENT_OBJS) $(LTC_OBJS) default_options_guard.h: src/default_options.h src/ifndef_wrapper.sh @printf "/*\n > > > Do not edit this file (default_options_guard.h) < < <\nGenerated from src/default_options.h\nLocal customisation goes in localoptions.h\n*/\n\n" > $@.tmp @./src/ifndef_wrapper.sh < src/default_options.h >> $@.tmp @mv $@.tmp $@ $(OBJDIR)/%.o: src/%.c default_options_guard.h localoptions.h @mkdir -p $(dir $@) $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $@ $(OBJDIR)/ltc/%.o: libtomcrypt/src/%.c default_options_guard.h localoptions.h @mkdir -p $(dir $@) $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $@ clean: rm -rf $(OBJDIR) $(DBCLIENT) default_options_guard.h
Commit message
This repository is read-only for this account.
Repository snapshot
Current branch
main
Visibility
public
Your access
Read
Remote
None
File activity
View file history