Compare commits
No commits in common. "01ee2257a447548ad886afc50d4349577d491f27" and "936c846b0cd5bb25badc495bc211e308ddb8efa8" have entirely different histories.
01ee2257a4
...
936c846b0c
2
.gitignore
vendored
2
.gitignore
vendored
@ -14,5 +14,3 @@ build/
|
||||
*.out
|
||||
*.synctex.gz
|
||||
*.toc
|
||||
*.o
|
||||
*.exe
|
||||
|
||||
12
Makefile
12
Makefile
@ -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)
|
||||
|
||||
@ -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)
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
#include "ps_graph.h"
|
||||
#include <math.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#define TEMP_BUF_SIZE 128
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user