This commit is contained in:
Nishi 2026-05-08 02:59:11 +09:00
commit 32d4e8c6f2
Signed by: nishi
GPG key ID: 27EF69B208EB9343
15 changed files with 108626 additions and 0 deletions

2
src/compiler/gcc.js Normal file
View file

@ -0,0 +1,2 @@
class GCC extends Compiler {
};

2
src/compiler/watcom.js Normal file
View file

@ -0,0 +1,2 @@
class Watcom extends Compiler {
};

8
src/config.h Normal file
View file

@ -0,0 +1,8 @@
#ifndef __CONFIG_H__
#define __CONFIG_H__
#define COMPILERS \
X(watcom) \
X(gcc) \
#endif

4
src/main.c Normal file
View file

@ -0,0 +1,4 @@
#include "pmake.h"
int main(int argc, char** argv){
}

11
src/pmake.h Normal file
View 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