mirror of
https://github.com/cc65/cc65.git
synced 2025-03-01 11:29:27 +00:00
added makefile and common include
This commit is contained in:
parent
a20cb09032
commit
20072a379c
2
test/.gitignore
vendored
Normal file
2
test/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
*.o
|
||||
*.prg
|
56
test/val/Makefile
Normal file
56
test/val/Makefile
Normal file
@ -0,0 +1,56 @@
|
||||
|
||||
CC65FLAGS = -t sim6502
|
||||
|
||||
CL65 := $(if $(wildcard ../../bin/cl65*),../../bin/cl65,cl65)
|
||||
SIM65 := $(if $(wildcard ../../bin/sim65*),../../bin/sim65,sim65)
|
||||
|
||||
RM := rm -f
|
||||
|
||||
.PHONY: all
|
||||
|
||||
TESTS := $(patsubst %.c,%.prg,$(wildcard *.c))
|
||||
TESTS += $(patsubst %.c,%.o.prg,$(wildcard *.c))
|
||||
TESTS += $(patsubst %.c,%.os.prg,$(wildcard *.c))
|
||||
TESTS += $(patsubst %.c,%.osi.prg,$(wildcard *.c))
|
||||
TESTS += $(patsubst %.c,%.osir.prg,$(wildcard *.c))
|
||||
TESTS += $(patsubst %.c,%.oi.prg,$(wildcard *.c))
|
||||
TESTS += $(patsubst %.c,%.oir.prg,$(wildcard *.c))
|
||||
TESTS += $(patsubst %.c,%.or.prg,$(wildcard *.c))
|
||||
|
||||
all: $(TESTS)
|
||||
|
||||
%.prg: %.c
|
||||
$(CL65) $(CC65FLAGS) $< -o $@
|
||||
$(SIM65) $@
|
||||
|
||||
%.o.prg: %.c
|
||||
$(CL65) $(CC65FLAGS) $< -o $@
|
||||
$(SIM65) $@
|
||||
|
||||
%.os.prg: %.c
|
||||
$(CL65) $(CC65FLAGS) $< -o $@
|
||||
$(SIM65) $@
|
||||
|
||||
%.osi.prg: %.c
|
||||
$(CL65) $(CC65FLAGS) $< -o $@
|
||||
$(SIM65) $@
|
||||
|
||||
%.osir.prg: %.c
|
||||
$(CL65) $(CC65FLAGS) $< -o $@
|
||||
$(SIM65) $@
|
||||
|
||||
%.oi.prg: %.c
|
||||
$(CL65) $(CC65FLAGS) $< -o $@
|
||||
$(SIM65) $@
|
||||
|
||||
%.oir.prg: %.c
|
||||
$(CL65) $(CC65FLAGS) $< -o $@
|
||||
$(SIM65) $@
|
||||
|
||||
%.or.prg: %.c
|
||||
$(CL65) $(CC65FLAGS) $< -o $@
|
||||
$(SIM65) $@
|
||||
|
||||
clean:
|
||||
@$(RM) *.o
|
||||
@$(RM) *.prg
|
22
test/val/common.h
Normal file
22
test/val/common.h
Normal file
@ -0,0 +1,22 @@
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#define NO_OLD_FUNC_DECL
|
||||
#define NO_TYPELESS_INT
|
||||
#define NO_TYPELESS_INT_PTR
|
||||
#define MAIN_RETURNS_INT
|
||||
#define NO_IMPLICIT_FUNC_PROTOTYPES
|
||||
#define NO_FLOATS
|
||||
#define NO_WCHAR
|
||||
#define NO_EMPTY_FUNC_ARGS
|
||||
#define NO_SLOPPY_STRUCT_INIT
|
||||
#define NO_FUNCS_TAKE_STRUCTS
|
||||
#define NO_FUNCS_RETURN_STRUCTS
|
||||
#define CAST_STRUCT_PTR
|
||||
#define NO_TYPELESS_STRUCT_PTR
|
||||
#define NO_IMPLICIT_FUNCPTR_CONV
|
||||
#define SIZEOF_INT_16BIT
|
||||
#define SIZEOF_LONG_32BIT
|
||||
#define UNSIGNED_CHARS
|
||||
#define UNSIGNED_BITFIELDS
|
Loading…
x
Reference in New Issue
Block a user