Skip to content

Instantly share code, notes, and snippets.

@jleedev
Created May 31, 2011 16:23
Show Gist options
  • Select an option

  • Save jleedev/1000795 to your computer and use it in GitHub Desktop.

Select an option

Save jleedev/1000795 to your computer and use it in GitHub Desktop.
extern int a;
#include <iostream>
#include "header.h"
int main(void) {
std::cout << a << std::endl;
}
all: main
extern.o: extern.cpp
main.o: main.cpp
main: main.o extern.o
g++ $^ -o $@
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment