Browse Source

Made htaccess and cname files optional in makefile.

master
Daniel Sissom 10 months ago
parent
commit
87f3a6ab77
Signed by: djsissom GPG Key ID: 2C30FFB796852389
1 changed files with 2 additions and 2 deletions
  1. + 2
    - 2
      Makefile

+ 2
- 2
Makefile

@ -96,8 +96,8 @@ TXTFILES_SRC = $(wildcard $(EXTDIR)/*.txt)
PNGFILES_SRC = $(wildcard $(EXTDIR)/*.png) PNGFILES_SRC = $(wildcard $(EXTDIR)/*.png)
ICOFILES_SRC = $(wildcard $(EXTDIR)/*.ico) ICOFILES_SRC = $(wildcard $(EXTDIR)/*.ico)
XMLFILES_SRC = $(wildcard $(EXTDIR)/*.xml) XMLFILES_SRC = $(wildcard $(EXTDIR)/*.xml)
HTACCESS_SRC = $(EXTDIR)/.htaccess
CNAME_SRC = $(EXTDIR)/CNAME
HTACCESS_SRC = $(wildcard $(EXTDIR)/.htaccess)
CNAME_SRC = $(wildcard $(EXTDIR)/CNAME)
FEEDFILES = $(patsubst $(EXTDIR)/%, $(BUILDDIR)/%, $(FEEDFILES_SRC)) FEEDFILES = $(patsubst $(EXTDIR)/%, $(BUILDDIR)/%, $(FEEDFILES_SRC))
TXTFILES = $(patsubst $(EXTDIR)/%, $(BUILDDIR)/%, $(TXTFILES_SRC)) TXTFILES = $(patsubst $(EXTDIR)/%, $(BUILDDIR)/%, $(TXTFILES_SRC))

Loading…
Cancel
Save