Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ManasJayanth committed Jan 3, 2021
0 parents commit 1e5993d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*~
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
all: main.c
$(CC_PREFIX)gcc -o hello main.c

install:
install -m u=rwx,g=rwx,o=rx hello $(PREFIX)/bin/hello
3 changes: 3 additions & 0 deletions configure
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#! /bin/sh

echo "Configuring..done"
6 changes: 6 additions & 0 deletions main.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#include <stdio.h>

int main() {
printf("Hello, World\n");
return 0;
}

0 comments on commit 1e5993d

Please sign in to comment.