Merge branch 'master' of ssh://code.obermui.de:3232/markus/S_New4

This commit is contained in:
Markus
2019-09-04 10:43:31 +02:00
2 changed files with 11 additions and 1 deletions

2
.gitignore vendored
View File

@ -23,7 +23,7 @@ tags
.DS_Store
.directory
*.debug
Makefile*
Makefile?*
*.prl
*.app
moc_*.cpp

10
Makefile Normal file
View File

@ -0,0 +1,10 @@
CC=g++
LIBS=-lcurl -lpthread
S_New4: *.h *.cpp
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
.PHONY: clean
clean:
rm -f S_New4