spacing
This commit is contained in:
parent
7d6056a462
commit
2bb1a19e4b
1 changed files with 13 additions and 10 deletions
11
Makefile
11
Makefile
|
@ -101,13 +101,14 @@ distdir: $(DISTFILES)
|
|||
$(CP) $(DISTFILES) $(distdir)
|
||||
|
||||
doc: $(DOXYFILE)
|
||||
cat $< | sed -e "s/PROJECT_NAME *=.*/PROJECT_NAME = $(PROGNAME)/" |\
|
||||
cat $< | sed -e "s/PROJECT_NAME *=.*/PROJECT_NAME = $(PROGNAME)/" | \
|
||||
sed -e "s/PROJECT_NUMBER *=.*/PROJECT_NUMBER = $(VERSION)/" >> $<.new
|
||||
mv -f $<.new $<
|
||||
cd documentation && doxygen && cd ..
|
||||
|
||||
msvc: $(VSCFILES)
|
||||
@echo "Now these files ($?) already exist. If you wish to regenerate them, you should first delete them manually."
|
||||
@echo "Now these files ($?) already exist. If you wish to regenerate them, you \
|
||||
should first delete them manually."
|
||||
|
||||
$(VSCFILES):
|
||||
@echo "Generating $@ ..."
|
||||
|
@ -126,13 +127,15 @@ distminified: distdirminified dist
|
|||
distdirminified: EXTRAFILES := $(filter-out $(VSCFILES),$(EXTRAFILES))
|
||||
distdirminified: DISTFILES := $(filter-out $(DOXYFILE),$(DISTFILES))
|
||||
distdirminified: distdir
|
||||
@$(CURL) https://raw.githubusercontent.com/BaseMax/C-Minifier/main/Minifier.c | $(CC) -o $(MINIFIER) $(CFLAGS) -x c -
|
||||
@$(CURL) https://raw.githubusercontent.com/BaseMax/C-Minifier/main/Minifier.c | \
|
||||
$(CC) -o $(MINIFIER) $(CFLAGS) -x c -
|
||||
$(foreach f,$(SOURCES),./$(MINIFIER) $(f) $(distdir)/$(f);)
|
||||
@$(RM) $(MINIFIER)
|
||||
|
||||
size: $(PROGNAME)
|
||||
size: SIZEFILES = $(PROGNAME) $(filter-out $(VSCFILES) COPYING,$(EXTRAFILES))
|
||||
size: SIZEINFOS = ("; printf $$1; print "Ko - soit `$(shell echo $(SIZEFILES) | sed 's/ /`, `/g')`)"
|
||||
size: SIZEINFOS = ("; printf $$1; print "/$(MAXSIZE)Ko - soit \
|
||||
`$(shell echo $(SIZEFILES) | sed 's/ /`, `/g')`)"
|
||||
size:
|
||||
@$(DU) --total $(SIZEFILES) | \
|
||||
$(TAIL) -n 1 | \
|
||||
|
|
Reference in a new issue