From 18a0c695a74081bf73c44921c7af43acf5933885 Mon Sep 17 00:00:00 2001 From: "Haoran S. Diao" <0@hairydiode.xyz> Date: Sat, 13 Apr 2019 17:54:16 -0400 Subject: removed redundant rs232 files --- RS-232/Makefile | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100755 RS-232/Makefile (limited to 'RS-232/Makefile') 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 - -# -# -# -# - - - - - -- cgit v1.1