First Make File (Linux only)

This commit is contained in:
2019-09-02 14:41:27 +02:00
parent 2aaf9a5acb
commit c2c6dacc51
2 changed files with 11 additions and 1 deletions

2
.gitignore vendored
View File

@ -23,7 +23,7 @@ tags
.DS_Store .DS_Store
.directory .directory
*.debug *.debug
Makefile* Makefile?*
*.prl *.prl
*.app *.app
moc_*.cpp 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