diff options
Diffstat (limited to 'unix-cpy/Makefile')
-rw-r--r-- | unix-cpy/Makefile | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/unix-cpy/Makefile b/unix-cpy/Makefile deleted file mode 100644 index 9f8ad3b51c..0000000000 --- a/unix-cpy/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -include ../py/mkenv.mk - -# define main target -PROG = cpy - -# include py core make definitions -include ../py/py.mk - -INC = -I. -INC += -I.. -INC += -I$(BUILD) - -# compiler settings -CFLAGS = $(INC) -Wall -Wpointer-arith -Werror -ansi -std=gnu99 -DUNIX -LDFLAGS = -lm - -# Debugging/Optimization -ifdef DEBUG -CFLAGS += -O0 -g -else -CFLAGS += -Os #-DNDEBUG -endif - -# source files -SRC_C = \ - main.c \ - -OBJ = $(PY_O) $(addprefix $(BUILD)/, $(SRC_C:.c=.o)) -LIB = - -include ../py/mkrules.mk - |