aboutsummaryrefslogtreecommitdiffstats
path: root/test/ccured_olden/power/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'test/ccured_olden/power/Makefile')
-rw-r--r--test/ccured_olden/power/Makefile41
1 files changed, 0 insertions, 41 deletions
diff --git a/test/ccured_olden/power/Makefile b/test/ccured_olden/power/Makefile
deleted file mode 100644
index 9396957b..00000000
--- a/test/ccured_olden/power/Makefile
+++ /dev/null
@@ -1,41 +0,0 @@
-
-CC = gcc -arch ppc
-CCOMP=../../../ccomp
-CCOMPFLAGS=-dump-c
-
-CFLAGS = $(EXTRA_CFLAGS)
-#CFLAGS = -O2
-LDFLAGS = $(EXTRA_LDFLAGS)
-
-CFLAGS += -DPLAIN
-
-ifdef _MSVC
- # ...
-else
- MATH = -lm
- CFLAGS += -g -ffloat-store
- LDFLAGS += -g -ffloat-store
-endif
-
-PROGS = compute build main
-
-#defaulttarget: $(OBJS)
-# $(CC) $(LDFLAGS) $(OBJS) $(EXTRA_LIBS) -o power.exe $(MATH)
-
-all_s: $(PROGS:%=%.s)
-
-all: $(PROGS:%=%.compcert)
-
-all_gcc: $(PROGS:%=%.gcc)
-
-%.compcert: %.s
- $(CC) $(LDFALGS) -o $*.compcert $*.s
-
-%.s: %.c ../../../../ccomp
- $(CCOMP) $(CCOMPFLAGS) $*.c
-
-%.gcc: %.c
- $(CC) $(CFLAGS) $(LDFALGS) $(OPTFLAGS) -o $*.gcc $*.c
-
-clean:
- rm -f $(TARGET) $(OBJS) *~ *.obj *.o *.exe .make.state .nse_depinfo *.light.c *.s *.compcert