summaryrefslogtreecommitdiff
path: root/RS-232/Makefile
diff options
context:
space:
mode:
authorHaoran S. Diao <0@hairydiode.xyz>2019-04-13 17:54:16 -0400
committerHaoran S. Diao <0@hairydiode.xyz>2019-04-13 17:54:16 -0400
commit18a0c695a74081bf73c44921c7af43acf5933885 (patch)
tree111456f766874d72e56c72974cd70257df18a53e /RS-232/Makefile
parentf14a8e9006a84c44a65163f301efaa8a000bfa06 (diff)
removed redundant rs232 files
Diffstat (limited to 'RS-232/Makefile')
-rwxr-xr-xRS-232/Makefile42
1 files changed, 0 insertions, 42 deletions
diff --git a/RS-232/Makefile b/RS-232/Makefile
deleted file mode 100755
index 6af5201..0000000
--- a/RS-232/Makefile
+++ /dev/null
@@ -1,42 +0,0 @@
-#
-#
-# Author: Teunis van Beelen
-#
-# email: teuniz@gmail.com
-#
-#
-
-CC = gcc
-CFLAGS = -Wall -Wextra -Wshadow -Wformat-nonliteral -Wformat-security -Wtype-limits -o2
-
-objects = rs232.o
-
-all: test_rx test_tx
-
-test_rx : $(objects) demo_rx.o
- $(CC) $(objects) demo_rx.o -o test_rx
-
-test_tx : $(objects) demo_tx.o
- $(CC) $(objects) demo_tx.o -o test_tx
-
-demo_rx.o : demo_rx.c rs232.h
- $(CC) $(CFLAGS) -c demo_rx.c -o demo_rx.o
-
-demo_tx.o : demo_tx.c rs232.h
- $(CC) $(CFLAGS) -c demo_tx.c -o demo_tx.o
-
-rs232.o : rs232.h rs232.c
- $(CC) $(CFLAGS) -c rs232.c -o rs232.o
-
-clean :
- $(RM) test_rx test_tx $(objects) demo_rx.o demo_tx.o rs232.o
-
-#
-#
-#
-#
-
-
-
-
-