Skip to content

Instantly share code, notes, and snippets.

@linus-young
Last active December 26, 2015 22:59
Show Gist options
  • Save linus-young/7227478 to your computer and use it in GitHub Desktop.
Save linus-young/7227478 to your computer and use it in GitHub Desktop.
#
# description
# D_GNU_SOURCE is for GNU extension
#
all: project_name
clean:
rm -f exec_file
project_name: main.c
# cc -o exec_file main.c
gcc -Wall main.c other.c -o exec_file -D_GNU_SOURCE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment