summaryrefslogtreecommitdiff
path: root/ecp/src/fe310/Makefile
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2022-01-31 07:57:12 +0100
committerUros Majstorovic <majstor@majstor.org>2022-01-31 07:57:12 +0100
commitdcdc68164b16831c1e5bd6bbd5fa9c0aecacf890 (patch)
treec0f5a96bec018e862a1cbad96d2d49a231903228 /ecp/src/fe310/Makefile
parent63e0f6da6c90729a259a2fc36eabc26d18898698 (diff)
fixed build
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