Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
datajerk committed Apr 9, 2017
1 parent aabdda0 commit 8938ce1
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 25 deletions.
13 changes: 8 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,24 @@ c2d.h: c2d.h.0 asm/loader.s makeheader
./makeheader

bin/c2d: c2d.c c2d.h
gcc -Wall -Wno-missing-braces -I. -O3 -o bin/c2d c2d.c -lm
gcc -Wall -Wno-missing-braces -I. -O3 -o $@ $< -lm

bin/c2d.exe: c2d.c c2d.h
$(WIN32GCC) -Wall -Wno-missing-braces -I. -O3 -o bin/c2d.exe c2d.c
$(WIN32GCC) -Wall -Wno-missing-braces -I. -O3 -o $@ $<

bin/text2page: text2page.c
gcc -Wall -O3 -o bin/text2page text2page.c -lm
gcc -Wall -O3 -o $@ $< -lm

bin/text2page.exe: text2page.c
$(WIN32GCC) -Wall -O3 -o bin/text2page.exe text2page.c
$(WIN32GCC) -Wall -O3 -o $@ $<

clean:
rm -f bin/* *.dsk c2d.h c2d.h.1
(cd asm; make clean)

test: gameserverclient dist
gameserverclient.text:
figlet -c -w 40 -f slant "Game Server Client Online" >$@

test: gameserverclient gameserverclient.text dist
./test.sh

Binary file modified bin/c2d.exe
Binary file not shown.
Binary file modified bin/text2page.exe
Binary file not shown.
40 changes: 21 additions & 19 deletions gameserverclient.text
Original file line number Diff line number Diff line change
@@ -1,22 +1,24 @@


____ _____ _____ ___ ___
/ __ `/ __ `/ __ `__ \/ _ \
/ /_/ / /_/ / / / / / / __/
\__, /\__,_/_/ /_/ /_/\___/
/____/
______
/ ____/___ _____ ___ ___
/ / __/ __ `/ __ `__ \/ _ \
/ /_/ / /_/ / / / / / / __/
\____/\__,_/_/ /_/ /_/\___/

________ ______ _____ _____
/ ___/ _ \/ ___/ | / / _ \/ ___/
(__ ) __/ / | |/ / __/ /
_____
/ ___/___ ______ _____ _____
\__ \/ _ \/ ___/ | / / _ \/ ___/
___/ / __/ / | |/ / __/ /
/____/\___/_/ |___/\___/_/

_________ __
/ ____/ (_)__ ____ / /_
/ / / / / _ \/ __ \/ __/
/ /___/ / / __/ / / / /_
\____/_/_/\___/_/ /_/\__/

____ ___
/ __ \____ / (_)___ ___
/ / / / __ \/ / / __ \/ _ \
/ /_/ / / / / / / / / / __/
\____/_/ /_/_/_/_/ /_/\___/

___ __
_____/ (_)__ ____ / /_
/ ___/ / / _ \/ __ \/ __/
/ /__/ / / __/ / / / /_
\___/_/_/\___/_/ /_/\__/



LOADING...
Binary file modified gameserverclient.textpage
Binary file not shown.
2 changes: 1 addition & 1 deletion test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ else
exit 1
fi

SUM=d12ba3c2db1cd3de352f182e0530940d
SUM=aaed7ee47fde72a69435d146f01301f4

rm -f ${BIN}.dsk
echo
Expand Down

0 comments on commit 8938ce1

Please sign in to comment.