Skip to content

Instantly share code, notes, and snippets.

@khajavi
Created September 7, 2013 13:32
Show Gist options
  • Save khajavi/6475593 to your computer and use it in GitHub Desktop.
Save khajavi/6475593 to your computer and use it in GitHub Desktop.
simple Hello, Wolrd makefile
#include <stdio.h>
int main() { printf("Hello, World!\n"); }
CFLAGS=-g -Wall -std=gnu99 -O3
LDLIBS=
OBJECTS=
CC=gcc
hello: hello.c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment