Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/lexborisov/perl-html-myhtml.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/Makefile')
-rw-r--r--source/Makefile25
1 files changed, 0 insertions, 25 deletions
diff --git a/source/Makefile b/source/Makefile
deleted file mode 100644
index 0130f33..0000000
--- a/source/Makefile
+++ /dev/null
@@ -1,25 +0,0 @@
-TARGET := myhtml
-SRCDIR := myhtml
-
-CC ?= gcc
-CFLAGS ?= -Wall -std=c99 -I. -pthread
-
-SRCS := $(wildcard $(SRCDIR)/*.c)
-HDRS := $(wildcard $(SRCDIR)/*.h)
-OBJS := $(patsubst %.c,%.o,$(SRCS))
-
-CFLAGS += -pthread
-LIBNAME := myhtml
-
-all: create
- $(MAKE) -C $(SRCDIR) all
- cp $(SRCDIR)/*lib$(LIBNAME).* lib/
-
-clean:
- $(MAKE) -C $(SRCDIR) clean
- rm -rf lib/*
-
-create:
- mkdir -p lib
-
-.PHONY:all clean \ No newline at end of file