/* PDP-11 */ #include #ifndef LCCDIR #define LCCDIR "/Users/toby/Documents/workspace/lcc_pdp11/pdp11/" #endif #ifndef LIBDIR #define LIBDIR "/usr/lib/" #endif char *suffixes[] = { ".c", ".i", ".mac", ".o", ".out", 0 }; char inputs[256] = ""; char *cpp[] = { LCCDIR "cpp", "-D__STDC__=1", "$1", "$2", "$3", 0 }; char *com[] = { LCCDIR "rcc", "-target=pdp11", "$1", "$2", "$3", 0 }; char *include[] = { "-I" LCCDIR "include", "-I/usr/local/include", "-I/usr/include", 0 }; char *as[] = { "macro11", "-o", "$3", "$1", "$2", 0 }; char *ld[] = { "link11", "-o", "$3", LIBDIR "lccrt", 0 }; extern char *concat(char *, char *); int option(char *arg) { return 1; }