Created
October 3, 2014 01:17
-
-
Save ixn/79bbe0e7c981f71b7f10 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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