This commit is contained in:
2019-02-26 14:05:05 +00:00
commit 5f423d24e2
2 changed files with 137 additions and 0 deletions

14
NumberServer/Makefile Normal file
View File

@ -0,0 +1,14 @@
CC=gcc
CFLAGS=-std=gnu99
LDFLAGS=-lpthread
lfs: lfs.o
$(CC) -o $@ $(LDFLAGS) $^
.c.o:
$(CC) $(CFLAGS) -c $<
.PHONY: clean
clean:
-rm -f *.o lfs