Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
*.o
*.obj
a.out
wla_dx/wlab/wlab
wla_dx/wlalink/wlalink
wla_dx/wla-65816
libs/libc_c.asm
libs/libm_c.asm
*.sfc
*.smc
*.sym
tcc-65816/816-tcc
tcc-65816/config.h
tcc-65816/config.mak
3 changes: 2 additions & 1 deletion wla_dx/makefiles/makefile.unix.65816
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
CC=gcc
LD=gcc

CFLAGS?= -c -O2 -ansi -pedantic -Wall -g
CFLAGS += -c -ansi
CFLAGS ?= -O2 -pedantic -Wall -g
LDFLAGS = -lm
WLAFLAGS = $(CFLAGS) -DUNIX -DW65816

Expand Down
3 changes: 2 additions & 1 deletion wla_dx/wlab/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
CC?=egcs
LD?=egcs

CFLAGS?= -c -ansi -O3 -pedantic -Wall
CFLAGS += -c -ansi
CFLAGS ?= -O3 -pedantic -Wall
LDFLAGS =

CFILES = main.c
Expand Down
3 changes: 2 additions & 1 deletion wla_dx/wlalink/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
CC=gcc
LD=gcc

CFLAGS?= -c -g -Wall -O2 -DPREFIX=\"$(PREFIX)\"
CFLAGS += -c -DPREFIX=\"$(PREFIX)\"
CFLAGS ?= -g -Wall -O2
LDFLAGS =

CFILES = main.c memory.c parse.c files.c check.c analyze.c write.c compute.c discard.c listfile.c
Expand Down