Compare commits

..

No commits in common. "01ee2257a447548ad886afc50d4349577d491f27" and "936c846b0cd5bb25badc495bc211e308ddb8efa8" have entirely different histories.

4 changed files with 0 additions and 24 deletions

2
.gitignore vendored
View File

@ -14,5 +14,3 @@ build/
*.out
*.synctex.gz
*.toc
*.o
*.exe

View File

@ -1,12 +0,0 @@
CC = gcc
CFLAGS = -Wall -pedantic
LDFLAGS = -lm
BIN = graph.exe
OBJ = errors.o lex.o main.o math_functions.o parser.o ps_graph.o tree.o
%.o: %.c
$(CC) -c $(CFLAGS) $< -o $@
$(BIN): $(OBJ)
$(CC) $^ -o $@ $(LDFLAGS)

View File

@ -1,9 +0,0 @@
BIN = graph.exe
OBJ = errors.o lex.o main.o math_functions.o parser.o ps_graph.o tree.o
.c.obj:
cl $< /c
$(BIN): $(OBJ)
cl $(OBJ) /Fe$(BIN)

View File

@ -1,6 +1,5 @@
#include "ps_graph.h"
#include <math.h>
#include <stdio.h>
#define TEMP_BUF_SIZE 128