summaryrefslogtreecommitdiff
path: root/ecp/src/fe310/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'ecp/src/fe310/Makefile')
-rw-r--r--ecp/src/fe310/Makefile20
1 files changed, 0 insertions, 20 deletions
diff --git a/ecp/src/fe310/Makefile b/ecp/src/fe310/Makefile
deleted file mode 100644
index c781824..0000000
--- a/ecp/src/fe310/Makefile
+++ /dev/null
@@ -1,20 +0,0 @@
-include ../Makefile.platform
-CFLAGS += $(PIC) -I..
-
-obj_tr = transport.o
-obj_tm = time.o
-
-
-%.o: %.c
- $(CC) $(CFLAGS) -c $<
-
-all: libecptr.a libecptm.a
-
-libecptr.a: $(obj_tr)
- $(AR) rcs libecptr.a $(obj_tr)
-
-libecptm.a: $(obj_tm)
- $(AR) rcs libecptm.a $(obj_tm)
-
-clean:
- rm -f *.o *.a