fix failed experiment

This commit is contained in:
anon
2023-09-13 14:53:31 +02:00
parent e3da1b9164
commit 2ded9c13db

View File

@ -11,18 +11,14 @@ Easy MAKE
I make many example/test files, many require linking and trying to remember which libraries are dependencies or copying the right command from the source file gets old fast.
### Example
```sh
$ cat test/hw.c
```
```C
$ cat test/hw.c
// @COMPILECMD gcc $@ -o hw.out
#include <stdio.h>
void main(){
puts("Hello world");
}
```
```sh
$ ./emake test/hw.c
$ ./hw.out
Hello world