mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 22:31:05 +00:00
the beginnings of merged progs code
This commit is contained in:
parent
7e14a0fbf3
commit
38e70e9fb2
4 changed files with 13 additions and 1 deletions
|
@ -1380,6 +1380,7 @@ AC_OUTPUT(
|
|||
include/Makefile
|
||||
include/win32/version.h
|
||||
libs/Makefile
|
||||
libs/gamecode/Makefile
|
||||
libs/util/Makefile
|
||||
qw/include/Makefile
|
||||
qw/source/Makefile
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
SUBDIRS= util
|
||||
SUBDIRS= gamecode util
|
||||
|
||||
clean-local:
|
||||
rm -f *.a
|
||||
|
|
3
libs/gamecode/.gitignore
vendored
Normal file
3
libs/gamecode/.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
.vimrc
|
||||
Makefile.in
|
||||
Makefile
|
8
libs/gamecode/Makefile.am
Normal file
8
libs/gamecode/Makefile.am
Normal file
|
@ -0,0 +1,8 @@
|
|||
noinst_LIBRARIES = libqfgamecode.a
|
||||
|
||||
libqfgamecode_a_SOURCES =
|
||||
|
||||
all-local: ../libqfgamecode.a
|
||||
|
||||
../libqfgamecode.a: libqfgamecode.a
|
||||
cp $(noinst_LIBRARIES) ..
|
Loading…
Reference in a new issue