Skip to content

Commit

Permalink
Merge cvs-synchronet-exec as exec
Browse files Browse the repository at this point in the history
  • Loading branch information
RealDeuce committed Apr 26, 2020
1 parent 3e9c185 commit 51a9fb3
Show file tree
Hide file tree
Showing 460 changed files with 147,088 additions and 0 deletions.
22 changes: 22 additions & 0 deletions exec/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# EditorConfig is awesome: http://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true

# Matches multiple files with brace expansion notation
# Set default charset
[**.{js,ssjs,src,inc}]
indent_style = tab
indent_size = 4
trim_trailing_whitespace = true

# Tab indentation (no size specified)
[{GNUmakefile, Makefile}]
indent_style = tab


37 changes: 37 additions & 0 deletions exec/GNUmakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Synchronet Baja Module Makefile (GNU make)

# Requires Baja v2.20+

# @format.tab-size 8, @format.use-tabs true

# $id: $

ifndef BAJAPATH
BAJAPATH := ./baja
endif

all : \
cntnodes.bin \
default.bin \
dir.bin \
file_io.bin \
ftp.bin \
getimlst.bin \
html.bin \
lbshell.bin \
major.bin \
matrix.bin \
noyesbar.bin \
pcboard.bin \
qnet-ftp.bin \
ra_emu.bin \
renegade.bin \
sdos.bin \
simple.bin \
type.bin \
wildcat.bin \
wwiv.bin \
yesnobar.bin

%.bin : %.src $(BAJAPATH)
@$(BAJAPATH) /q $<
34 changes: 34 additions & 0 deletions exec/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Synchronet Baja Module Makefile (for Borland make)

# Requires Baja v2.20+

# @format.tab-size 8, @format.use-tabs true

# $id: $

all : \
cntnodes.bin \
default.bin \
dir.bin \
file_io.bin \
ftp.bin \
getimlst.bin \
html.bin \
lbshell.bin \
major.bin \
matrix.bin \
noyesbar.bin \
pcboard.bin \
qnet-ftp.bin \
ra_emu.bin \
renegade.bin \
sdos.bin \
simple.bin \
type.bin \
wildcat.bin \
wwiv.bin \
yesnobar.bin


.src.bin:
@baja /q $<
Loading

0 comments on commit 51a9fb3

Please sign in to comment.