init
This commit is contained in:
commit
32d4e8c6f2
15 changed files with 108626 additions and 0 deletions
2
src/compiler/gcc.js
Normal file
2
src/compiler/gcc.js
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
class GCC extends Compiler {
|
||||
};
|
||||
2
src/compiler/watcom.js
Normal file
2
src/compiler/watcom.js
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
class Watcom extends Compiler {
|
||||
};
|
||||
8
src/config.h
Normal file
8
src/config.h
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#ifndef __CONFIG_H__
|
||||
#define __CONFIG_H__
|
||||
|
||||
#define COMPILERS \
|
||||
X(watcom) \
|
||||
X(gcc) \
|
||||
|
||||
#endif
|
||||
4
src/main.c
Normal file
4
src/main.c
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
#include "pmake.h"
|
||||
|
||||
int main(int argc, char** argv){
|
||||
}
|
||||
11
src/pmake.h
Normal file
11
src/pmake.h
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#ifndef __PMAKE_H__
|
||||
#define __PMAKE_H__
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <duktape.h>
|
||||
#include <stb_ds.h>
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue