From ecc619e4b65bc0ab467640cfa92155c99a59fde2 Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Tue, 3 Apr 2012 21:41:51 -0400 Subject: [PATCH] moving the F <-> C temperature thingy somewhere else dangit --- digressions/.gitignore | 1 + digressions/Makefile | 5 +++++ {math-replay => digressions}/temperatures.c | 0 math-replay/.gitignore | 1 - math-replay/Makefile | 3 --- 5 files changed, 6 insertions(+), 4 deletions(-) create mode 100644 digressions/.gitignore create mode 100644 digressions/Makefile rename {math-replay => digressions}/temperatures.c (100%) diff --git a/digressions/.gitignore b/digressions/.gitignore new file mode 100644 index 0000000..0086ed8 --- /dev/null +++ b/digressions/.gitignore @@ -0,0 +1 @@ +/temperatures diff --git a/digressions/Makefile b/digressions/Makefile new file mode 100644 index 0000000..1884913 --- /dev/null +++ b/digressions/Makefile @@ -0,0 +1,5 @@ +CFLAGS += -g -Wall -Wextra + +all: temperatures + +.PHONY: all diff --git a/math-replay/temperatures.c b/digressions/temperatures.c similarity index 100% rename from math-replay/temperatures.c rename to digressions/temperatures.c diff --git a/math-replay/.gitignore b/math-replay/.gitignore index 0038a65..d9766f8 100644 --- a/math-replay/.gitignore +++ b/math-replay/.gitignore @@ -2,4 +2,3 @@ *.log *.pdf *.html -temperatures diff --git a/math-replay/Makefile b/math-replay/Makefile index d5f6778..918cb2d 100644 --- a/math-replay/Makefile +++ b/math-replay/Makefile @@ -1,8 +1,5 @@ -CFLAGS += -g -Wall -Wextra - ALL := $(patsubst %.haml,%.html,$(shell find . -name '*.haml')) ALL += $(patsubst %.tex,%.pdf,$(shell find . -name '*.tex')) -ALL += temperatures %.html:%.haml