Skip to content

Instantly share code, notes, and snippets.

@kozmonaut
Created April 8, 2014 13:40
Show Gist options
  • Save kozmonaut/b63cc780abdfc383b4cb to your computer and use it in GitHub Desktop.
Save kozmonaut/b63cc780abdfc383b4cb to your computer and use it in GitHub Desktop.
Socket: Makefile example
all: client.o server.o
client.o: client-beta.c poruke.h
gcc client-beta.c -o client
server.o: server-beta.c
gcc server-beta.c -o server
clean:
rm server-beta.c server.exe client-beta.c client.exe poruke.h
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment