[commit: packages/time] format-widths, improve-leapseconds, master, posix-perf, tasty, wip/travis: removed unneccesary Makefile (b317b99)

git at git.haskell.org git at git.haskell.org
Mon Feb 20 21:15:04 UTC 2017


Repository : ssh://git@git.haskell.org/time

On branches: format-widths,improve-leapseconds,master,posix-perf,tasty,wip/travis
Link       : http://git.haskell.org/packages/time.git/commitdiff/b317b9924e78b343f585a92cbb66d486a6e80bc4

>---------------------------------------------------------------

commit b317b9924e78b343f585a92cbb66d486a6e80bc4
Author: blackredtree <blackredtree at gmail.com>
Date:   Thu Sep 13 15:24:52 2012 -0700

    removed unneccesary Makefile
    
    Ignore-this: cf806b83e0305616c9ab0f403ee90cd0
    
    darcs-hash:20120913222452-08fed-25ca1213291a7fafe793405b1b265ffddc4f1a5d


>---------------------------------------------------------------

b317b9924e78b343f585a92cbb66d486a6e80bc4
 Test/Makefile | 105 ----------------------------------------------------------
 1 file changed, 105 deletions(-)

diff --git a/Test/Makefile b/Test/Makefile
deleted file mode 100644
index ca57f7d..0000000
--- a/Test/Makefile
+++ /dev/null
@@ -1,105 +0,0 @@
-GHC = ghc
-GHCFLAGS = -package time -package QuickCheck-1.2.0.1
-
-default:
-	make CurrentTime.run ShowDST.run test
-
-TestMonthDay: TestMonthDay.o
-	$(GHC) $(GHCFLAGS) $^ -o $@
-
-ConvertBack: ConvertBack.o
-	$(GHC) $(GHCFLAGS) $^ -o $@
-
-TestCalendars: TestCalendars.o
-	$(GHC) $(GHCFLAGS) $^ -o $@
-
-TestTime: TestTime.o
-	$(GHC) $(GHCFLAGS) $^ -o $@
-
-LongWeekYears: LongWeekYears.o
-	$(GHC) $(GHCFLAGS) $^ -o $@
-
-ClipDates: ClipDates.o
-	$(GHC) $(GHCFLAGS) $^ -o $@
-
-AddDays: AddDays.o
-	$(GHC) $(GHCFLAGS) $^ -o $@
-
-TestFormat: TestFormat.o TestFormatStuff.o
-	$(GHC) $(GHCFLAGS) $^ -o $@
-
-TestFormatStuff.o: TestFormatStuff.c TestFormatStuff.h
-	gcc -o $@ -c $<
-
-TestParseDAT: TestParseDAT.o
-	$(GHC) $(GHCFLAGS) $^ -o $@
-
-TestEaster: TestEaster.o
-	$(GHC) $(GHCFLAGS) $^ -o $@
-
-CurrentTime: CurrentTime.o
-	$(GHC) $(GHCFLAGS) $^ -o $@
-
-ShowDST: ShowDST.o
-	$(GHC) $(GHCFLAGS) $^ -o $@
-
-TimeZone: TimeZone.o
-	$(GHC) $(GHCFLAGS) $^ -o $@
-
-TimeZone.ref: FORCE
-	date +%z > $@
-
-TestParseTime: TestParseTime.o
-	$(GHC) $(GHCFLAGS) $^ -o $@
-
-RealToFracBenchmark: RealToFracBenchmark.o
-	$(GHC) $(GHCFLAGS) $^ -o $@
-
-test:	\
-	TestMonthDay.diff	\
-	ConvertBack.diff0	\
-	TestCalendars.diff	\
-	TestTime.diff	\
-	LongWeekYears.diff	\
-	ClipDates.diff	\
-	AddDays.diff	\
-	TimeZone.diff	\
-	TestFormat.diff0	\
-	TestParseDAT.diff	\
-	TestEaster.diff	\
-	TestParseTime.run	\
-	UseCases.o	\
-	RealToFracBenchmark.run
-	@echo "Success!"
-
-clean:
-	rm -rf TestMonthDay ConvertBack TestCalendars TestTime LongWeekYears ClipDates	\
-	AddDays TestFormat TestParseDAT TestEaster CurrentTime ShowDST TimeZone TimeZone.ref TestParseTime RealToFracBenchmark \
-        *.out *.run *.o *.hi Makefile.bak
-
-%.diff: %.ref %.out
-	diff -u $^
-
-%.diff0: %.out
-	diff -u /dev/null $^
-
-%.out: %
-	./$< > $@
-
-%.run: %
-	./$<
-	touch $@
-
-%.hi: %.o
-	@:
-
-%.o: %.hs
-	$(GHC) $(GHCFLAGS) -c $< -o $@
-
-%.o: %.lhs
-	$(GHC) $(GHCFLAGS) -c $< -o $@
-
-FORCE:
-
-.SECONDARY:
-



More information about the ghc-commits mailing list