spacing
This commit is contained in:
parent
7d6056a462
commit
2bb1a19e4b
1 changed files with 13 additions and 10 deletions
23
Makefile
23
Makefile
|
@ -73,9 +73,9 @@ $(PROGNAME): $(OBJ)
|
|||
$(CC) $(OBJ) $(LDFLAGS) -o $(PROGNAME)
|
||||
|
||||
debug: CFLAGS := $(filter-out $(COPTI),$(CFLAGS)) -Wextra -Wconversion -g3 -Og \
|
||||
-Wno-sign-conversion -Wno-unused-parameter -Wno-unused-function \
|
||||
-Wdouble-promotion -Wshadow -Wcast-align -Wstrict-prototypes \
|
||||
-fanalyzer -fsanitize=undefined -fsanitize-undefined-trap-on-error
|
||||
-Wno-sign-conversion -Wno-unused-parameter -Wno-unused-function \
|
||||
-Wdouble-promotion -Wshadow -Wcast-align -Wstrict-prototypes \
|
||||
-fanalyzer -fsanitize=undefined -fsanitize-undefined-trap-on-error
|
||||
debug: $(PROGNAME)
|
||||
|
||||
%.o: %.c
|
||||
|
@ -101,13 +101,14 @@ distdir: $(DISTFILES)
|
|||
$(CP) $(DISTFILES) $(distdir)
|
||||
|
||||
doc: $(DOXYFILE)
|
||||
cat $< | sed -e "s/PROJECT_NAME *=.*/PROJECT_NAME = $(PROGNAME)/" |\
|
||||
sed -e "s/PROJECT_NUMBER *=.*/PROJECT_NUMBER = $(VERSION)/" >> $<.new
|
||||
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 $@ ..."
|
||||
|
@ -117,8 +118,8 @@ $(VSCFILES):
|
|||
sed -e "s/INSERT_SOURCE_FILES/$(MSVCSRC)/" > $@
|
||||
|
||||
clean:
|
||||
@$(RM) -r $(PROGNAME) $(OBJ) *~ $(distdir).tgz $(distdir).zip $(distdir)/ \
|
||||
gmon.out core.* documentation/*~ shaders/*~ documentation/html
|
||||
@$(RM) -r $(PROGNAME) $(OBJ) *~ $(distdir).tgz $(distdir).zip $(distdir)/ \
|
||||
gmon.out core.* documentation/*~ shaders/*~ documentation/html
|
||||
|
||||
distminified: distdirminified dist
|
||||
|
||||
|
@ -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