First Commit

Doing Network, in Developement
This commit is contained in:
2021-12-15 21:59:17 +01:00
commit 9e418f9193
9 changed files with 243 additions and 0 deletions

18
Makefile Normal file
View File

@ -0,0 +1,18 @@
CC=g++
CFLAGS= -Wall -g
LDLIBS= -lpqxx
SOURCES= $(wildcard *.cpp)
all: main
main: $(SOURCES)
$(CC) $(CFLAGS) -o main $(SOURCES) $(LDLIBS)
clean:
$(RM) main *.o *~
run: main
./main
.PHONY: all clean run