Mercurial > hg > index.cgi
comparison Makefile @ 294:048adfee2933 ccdev
Checkpoint on lwcc-cpp development
This checkpoint includes a tokenizer and basic implementation of #if,
#ifdef, #ifndef, #else, #endif, #elif, and #undef along with basic symbol
table management.
author | William Astle <lost@l-w.ca> |
---|---|
date | Tue, 10 Sep 2013 19:56:05 -0600 |
parents | c419b3b3d43f |
children | 4b17780f2777 |
comparison
equal
deleted
inserted
replaced
293:c419b3b3d43f | 294:048adfee2933 |
---|---|
99 lwcc_driver_srcs := main.c | 99 lwcc_driver_srcs := main.c |
100 lwcc_driver_srcs := $(addprefix lwcc/driver/,$(lwcc_driver_srcs)) | 100 lwcc_driver_srcs := $(addprefix lwcc/driver/,$(lwcc_driver_srcs)) |
101 lwcc_driver_objs := $(lwcc_driver_srcs:.c=.o) | 101 lwcc_driver_objs := $(lwcc_driver_srcs:.c=.o) |
102 lwcc_driver_deps := $(lwcc_driver_srcs:.c=.d) | 102 lwcc_driver_deps := $(lwcc_driver_srcs:.c=.d) |
103 | 103 |
104 lwcc_cpp_srcs := main.c error.c file.c preproc.c char_p.c | 104 lwcc_cpp_srcs := main.c error.c file.c preproc.c char_p.c symbol.c |
105 lwcc_cpp_srcs := $(addprefix lwcc/cpp/,$(lwcc_cpp_srcs)) | 105 lwcc_cpp_srcs := $(addprefix lwcc/cpp/,$(lwcc_cpp_srcs)) |
106 lwcc_cpp_objs := $(lwcc_cpp_srcs:.c=.o) | 106 lwcc_cpp_objs := $(lwcc_cpp_srcs:.c=.o) |
107 lwcc_cpp_deps := $(lwcc_cpp_srcs:.c=.d) | 107 lwcc_cpp_deps := $(lwcc_cpp_srcs:.c=.d) |
108 | 108 |
109 .PHONY: lwlink lwasm lwar lwobjdump lwcc | 109 .PHONY: lwlink lwasm lwar lwobjdump lwcc |