remove files 3
This commit is contained in:
parent
4d66149dc6
commit
632d0660e7
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
|||||||
./.*.swp
|
./.*.swp
|
||||||
./build/*
|
./build/*
|
||||||
./src/*
|
./src/*
|
||||||
|
./*.old
|
||||||
|
|||||||
BIN
build/main
Executable file
BIN
build/main
Executable file
Binary file not shown.
BIN
nob.old → nob
BIN
nob.old → nob
Binary file not shown.
1
nob.c
1
nob.c
@ -28,6 +28,7 @@ int main(int argc, char **argv){
|
|||||||
nob_cmd_append(&cmd, "-Wall", "-Wextra");
|
nob_cmd_append(&cmd, "-Wall", "-Wextra");
|
||||||
nob_cmd_append(&cmd, "-o", BUILD_FOLDER"main", SRC_FOLDER"main.c");
|
nob_cmd_append(&cmd, "-o", BUILD_FOLDER"main", SRC_FOLDER"main.c");
|
||||||
if(!nob_cmd_run(&cmd)) return 1;
|
if(!nob_cmd_run(&cmd)) return 1;
|
||||||
|
|
||||||
|
|
||||||
nob_cmd_append(&cmd, BUILD_FOLDER"main");
|
nob_cmd_append(&cmd, BUILD_FOLDER"main");
|
||||||
if(!nob_cmd_run(&cmd)) return 1;
|
if(!nob_cmd_run(&cmd)) return 1;
|
||||||
|
|||||||
7
src/main.c
Normal file
7
src/main.c
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
printf("Hello, world\n");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user