first working version with minimal syntax (check test.nhtml)

This commit is contained in:
2017-08-08 17:29:01 +02:00
parent 7a9a3ca64a
commit a4674d7eee
3 changed files with 214 additions and 50 deletions

View File

@@ -1,8 +1,10 @@
OBJ:= main.o
OBJ:= html.o main.o
OUTPUT:=nhtmlc
debug: CXXFLAGS = -g
debug: CFLAGS = -g
all: debug
debug: CXXFLAGS = -g -DDEBUG
debug: CFLAGS = -g -DDEBUG
debug: $(OBJ)
gcc $(OBJ) -g -o $(OUTPUT)