Update Readme

This commit is contained in:
Mylloon 2023-09-19 11:51:53 +02:00
parent f569c4afa9
commit e131934356
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -1,8 +1,30 @@
# Init projects!
## C
Copy and paste [`c/`](./c/) directory, and you should be good to go!
- Remember to change executable's name in the [`Makefile`](./c/Makefile).
- **Run `make` to compile the program.**
- **Run `make dev` to compile the program in debug mode.**
- **Run `make clean` to clean artifacts.**
> Note that in headers, the syntax is `PROJETNAME_FILENAME_H`
## C++
Copy and paste [`cpp/`](./cpp/) directory, and you should be good to go!
- Remember to change executable's name in the [`Makefile`](./cpp/Makefile).
- **Run `make` to compile the program.**
- **Run `make dev` to compile the program in debug mode.**
- **Run `make clean` to clean artifacts.**
> Note that in headers, the syntax is `PROJETNAME_FILENAME_HPP`
## Typescript
Copy and paste [`typescript/`](./typescript/) directory and you should be good to go!
Copy and paste [`typescript/`](./typescript/) directory, and you should be good to go!
- Remember to change values in the [`package.json`](./typescript/package.json).
- Then, to install all the dependencies, run `npm install`.