mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-10 06:31:56 +00:00
Added .gitignore files. Added clean-autoconf target to Makefile.in and
made distclean remove *~ files
This commit is contained in:
parent
23df922429
commit
509647ba1d
8 changed files with 24 additions and 8 deletions
8
.gitignore
vendored
Normal file
8
.gitignore
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
targets
|
||||
Makefile
|
||||
configure
|
||||
config.cache
|
||||
config.log
|
||||
config.status
|
||||
*~
|
||||
*.bak
|
|
@ -9,10 +9,14 @@ all:
|
|||
distclean:
|
||||
rm -f config.cache config.log config.status Makefile
|
||||
rm -f common/config.h
|
||||
find . -name \*~ | xargs rm -f
|
||||
for dir in $(SUBDIRS); do \
|
||||
$(MAKE) -C $$dir $@ || exit; \
|
||||
done
|
||||
|
||||
clean-autoconf mrproper: distclean
|
||||
rm -f configure
|
||||
|
||||
%:
|
||||
@for dir in $(SUBDIRS); do \
|
||||
$(MAKE) -C $$dir $@ || exit; \
|
||||
|
|
8
TODO
8
TODO
|
@ -18,18 +18,10 @@ to quake-devel@lists.sourceforge.net with details.
|
|||
* README: add tested platforms and results
|
||||
* Makefile.in, */Makefile.in: Add install target
|
||||
* Remove dependency on GNU make or migrate to automake
|
||||
* Add default .cvsignore files to the tree
|
||||
* Makefile.in: rerun configure if configure is newer than Makefile, also
|
||||
rerun autoconf if configure.in is newer than configure
|
||||
* AUTHORS: There are some patches in the tree aren't attributed to their
|
||||
authors yet. If your patch was applied and you haven't gotten a line
|
||||
in the AUTHORS file yet, please let us know so we can fix it.
|
||||
* Makefile.in */Makefile.in: developer-clean target ?
|
||||
* Quake/QW Client: Add proper XFree86 DGA/VideoMode support to X-based targets
|
||||
on systems with XFree86 available
|
||||
* Merge SDLQuake (BigM created a patch against an older revision of our
|
||||
main tree)
|
||||
* Remove TODO entries as they get finished.
|
||||
* Add currently removed documentation to the README, and also add more
|
||||
information to explain things that we've done, or broken.
|
||||
* Poke Deek.
|
||||
|
|
|
@ -25,6 +25,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
#undef GLAPIENTRY_IS_APIENTRY
|
||||
|
||||
#undef HAS_DGA
|
||||
|
||||
#ifdef GLAPIENTRY_IS_APIENTRY
|
||||
# define GLAPIENTRY APIENTRY
|
||||
#endif
|
||||
|
|
|
@ -247,6 +247,7 @@ AC_SUBST(X_LIBS)
|
|||
AC_SUBST(X_CFLAGS)
|
||||
AC_SUBST(X11_SHM_LIB)
|
||||
AC_SUBST(HAS_X11)
|
||||
echo "HAS_DGA is ($HAS_DGA)"
|
||||
if test "x$HAS_DGA" = xyes; then
|
||||
AC_DEFINE(HAS_DGA,1)
|
||||
fi
|
||||
|
|
3
qw_client/.gitignore
vendored
Normal file
3
qw_client/.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
Makefile
|
||||
*~
|
||||
*.bak
|
3
qw_server/.gitignore
vendored
Normal file
3
qw_server/.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
Makefile
|
||||
*~
|
||||
*.bak
|
3
uquake/.gitignore
vendored
Normal file
3
uquake/.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
Makefile
|
||||
*~
|
||||
*.bak
|
Loading…
Reference in a new issue