first working version

This commit is contained in:
2017-08-08 17:51:24 +02:00
parent 8372a03273
commit e3d663d6c3
3 changed files with 389 additions and 0 deletions

17
Makefile Normal file
View File

@@ -0,0 +1,17 @@
OBJ:= html.o main.o
OUTPUT:=nhtmlc
all: debug
debug: CXXFLAGS = -g -DDEBUG
debug: CFLAGS = -g -DDEBUG
debug: $(OBJ)
gcc $(OBJ) -g -o $(OUTPUT)
release: $(OBJ)
gcc $(OBJ) -o $(OUTPUT)
clean:
rm -rf $(OBJ) $(OUTPUT)