Skip to content

Instantly share code, notes, and snippets.

@ixn
Created October 3, 2014 01:17
Show Gist options
  • Select an option

  • Save ixn/79bbe0e7c981f71b7f10 to your computer and use it in GitHub Desktop.

Select an option

Save ixn/79bbe0e7c981f71b7f10 to your computer and use it in GitHub Desktop.
CC=gcc
CFLAGS=-I.
all: server_kalkulator
server_kalkulator: server_kalkulator.c
$(CC) $(CFLAGS) -o server_kalkulator $^ -L/usr/local/lib -levent -lm $(LDFLAGS)
clean:
rm -f *.o
rm -f *~
rm -f server_kalkulator
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment