From d13f0e289f5e87d65926c09ba46b72d4e94eaeb3 Mon Sep 17 00:00:00 2001 From: notaz Date: Mon, 16 May 2011 15:15:13 +0300 Subject: [PATCH] hexed: move transfer code here since md code is here too --- hexed/Makefile | 3 +++ transfer/transfer.c => hexed/pc_transfer.c | 0 2 files changed, 3 insertions(+) rename transfer/transfer.c => hexed/pc_transfer.c (100%) diff --git a/hexed/Makefile b/hexed/Makefile index ffb1aeb..f480c15 100644 --- a/hexed/Makefile +++ b/hexed/Makefile @@ -19,6 +19,9 @@ a.out : $(OBJS) clean: $(RM) $(TARGET) $(OBJS) $(TARGET).map a.out +pc_transfer: pc_transfer.c + gcc -Wall -O2 -ggdb -o $@ $^ + # ----------- release ----------- ifneq ($(findstring rel,$(MAKECMDGOALS)),) diff --git a/transfer/transfer.c b/hexed/pc_transfer.c similarity index 100% rename from transfer/transfer.c rename to hexed/pc_transfer.c -- 2.39.2