nhtml/Makefile

18 lines
223 B
Makefile
Raw Normal View History

OBJ:= html.o main.o
2017-08-07 10:41:09 +02:00
OUTPUT:=nhtmlc
all: debug
debug: CXXFLAGS = -g -DDEBUG
debug: CFLAGS = -g -DDEBUG
2017-08-07 10:41:09 +02:00
debug: $(OBJ)
gcc $(OBJ) -g -o $(OUTPUT)
release: $(OBJ)
gcc $(OBJ) -o $(OUTPUT)
clean:
rm -rf $(OBJ) $(OUTPUT)