-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
460 changed files
with
147,088 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 $< |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 $< |
Oops, something went wrong.