Static "Hello world" page

This commit is contained in:
Ian Gulliver
2019-04-28 06:47:30 +00:00
parent 8a2a19ac37
commit 9da4a994bd
11 changed files with 231 additions and 25 deletions

View File

@@ -1,8 +1,8 @@
mirall: Makefile mirall.o fastcgi.o fastcgi_conn.o buffer.o
g++ -std=gnu++2a -o mirall mirall.o fastcgi.o fastcgi_conn.o buffer.o -lgflags -lglog -lpthread
example_simple: example_simple.o fastcgi.o fastcgi_conn.o fastcgi_request.o buffer.o
g++ -std=gnu++2a -o example_simple example_simple.o fastcgi.o fastcgi_conn.o fastcgi_request.o buffer.o -lgflags -lglog -lpthread
clean:
rm --force mirall *.o
rm --force exmaple_simple *.o
.cpp.o: Makefile *.h
.cpp.o:
g++ -std=gnu++2a -o $@ -c $<