mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-04-05 10:43:36 +02:00
.gitignore and Makefile cleanup to make build environment friendly (and non-biased) to other editors.
This commit is contained in:
25
.gitignore
vendored
25
.gitignore
vendored
@@ -1,8 +1,27 @@
|
|||||||
|
## To see if new rules exclude any existing files, run
|
||||||
|
##
|
||||||
|
## git ls-files -i --exclude-standard
|
||||||
|
##
|
||||||
|
## after modifying this file.
|
||||||
|
|
||||||
|
## Generated by the build process
|
||||||
*.xpi
|
*.xpi
|
||||||
*/locale/*/*.html
|
*/locale/*/*.html
|
||||||
*/chrome
|
*/chrome
|
||||||
|
|
||||||
|
## Editor backup and swap files
|
||||||
*~
|
*~
|
||||||
.*.swp
|
.\#*
|
||||||
.*.swo
|
\#**\#
|
||||||
.swp
|
.*.sw[op]
|
||||||
|
.sw[op]
|
||||||
|
|
||||||
|
## Generated by Mac filesystem
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
|
## For rejects
|
||||||
|
*.orig
|
||||||
|
*.rej
|
||||||
|
|
||||||
|
## Generated by StGit
|
||||||
|
patches-*
|
||||||
|
|||||||
5
Makefile
5
Makefile
@@ -1,7 +1,6 @@
|
|||||||
|
|
||||||
DIRS = vimperator muttator
|
DIRS = vimperator muttator
|
||||||
TARGETS = clean distclean doc help info jar release xpi
|
TARGETS = clean distclean doc help info jar release xpi
|
||||||
.PHONY = tildetidy
|
|
||||||
.SILENT:
|
.SILENT:
|
||||||
|
|
||||||
$(TARGETS:%=\%.%):
|
$(TARGETS:%=\%.%):
|
||||||
@@ -9,7 +8,3 @@ $(TARGETS:%=\%.%):
|
|||||||
$(MAKE) -C $* $(@:$*.%=%)
|
$(MAKE) -C $* $(@:$*.%=%)
|
||||||
|
|
||||||
$(TARGETS): %: $(DIRS:%=%.%)
|
$(TARGETS): %: $(DIRS:%=%.%)
|
||||||
|
|
||||||
tildetidy:
|
|
||||||
@echo "Removing vim backup files..."
|
|
||||||
find . -name '*~' -exec rm -fv {} \;
|
|
||||||
|
|||||||
@@ -78,7 +78,6 @@ ${RDF}: ${RDF_IN} Makefile
|
|||||||
clean:
|
clean:
|
||||||
@echo "Cleanup..."
|
@echo "Cleanup..."
|
||||||
rm -f ${JAR} ${XPI}
|
rm -f ${JAR} ${XPI}
|
||||||
find . -name '*~' -exec rm -f {} \;
|
|
||||||
|
|
||||||
distclean: clean
|
distclean: clean
|
||||||
@echo "More cleanup..."
|
@echo "More cleanup..."
|
||||||
|
|||||||
@@ -41,7 +41,6 @@ help:
|
|||||||
|
|
||||||
clean:
|
clean:
|
||||||
@echo "Cleanup..."
|
@echo "Cleanup..."
|
||||||
find . -name '*~' -exec rm -f {} \;
|
|
||||||
|
|
||||||
distclean: clean
|
distclean: clean
|
||||||
@echo "More cleanup..."
|
@echo "More cleanup..."
|
||||||
|
|||||||
Reference in New Issue
Block a user