init github

This commit is contained in:
eddyem
2015-07-23 13:31:18 +03:00
parent 46de522a2e
commit 80154b79e8
41 changed files with 12173 additions and 0 deletions

12
C/client_cli/Makefile Normal file
View File

@@ -0,0 +1,12 @@
CXX.SRCS = tempmon_cli
CC = gcc
LDFLAGS =
CPPFLAGS =
all : tempmon_cli clean
tempmon_cli : client_cli.o
$(CC) client_cli.c $(CPPFLAGS) -o tempmon_cli
clean:
/bin/rm -f *.o *~
### <DEPENDENCIES ON .h FILES GO HERE>
# name1.o : header1.h header2.h ...