mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
more make dist fixes
This commit is contained in:
parent
ecd539cbd3
commit
3f958ae29b
5 changed files with 10 additions and 4 deletions
|
@ -11,8 +11,10 @@ QCPPFLAGS=-I. -I$(srcdir) -I$(top_builddir)/include -I$(top_srcdir)/include
|
|||
|
||||
pkgdata_DATA= menu.dat
|
||||
|
||||
menu.dat: menu.src menu.qc
|
||||
menu_src= menu.qc
|
||||
|
||||
menu.dat: menu.src $(menu_src)
|
||||
$(QFCC) $(QCFLAGS) $(QCPPFLAGS) -P $<
|
||||
|
||||
EXTRA_DIST=
|
||||
EXTRA_DIST= $(menu_src)
|
||||
CLEANFILES= *.dat *.sym
|
||||
|
|
|
@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign
|
|||
SUBDIRS = GL plugin
|
||||
includedir = $(prefix)/include/QF
|
||||
include_HEADERS = bspfile.h cdaudio.h checksum.h clip_hull.h cmd.h \
|
||||
console.h crc.h cvar.h draw.h gcc_attr.h gib.h hash.h hl.h \
|
||||
console.h crc.h csqc.h cvar.h draw.h gcc_attr.h gib.h hash.h hl.h \
|
||||
in_event.h info.h input.h joystick.h keys.h link.h locs.h \
|
||||
mathlib.h mdfour.h model.h modelgen.h msg.h pcx.h plugin.h \
|
||||
pr_comp.h pr_debug.h progs.h qargs.h qdefs.h qendian.h qfplist.h \
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
AUTOMAKE_OPTIONS= foreign
|
||||
|
||||
man_MANS=qfcc.1
|
||||
|
||||
EXTRA_DIST=$(man_MANS)
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
AUTOMAKE_OPTIONS= foreign
|
||||
|
||||
EXTRA_DIST= config.h.in qfcc.h getopt.h
|
||||
EXTRA_DIST= cmdlib.h config.h.in expr.h getopt.h scope.h struct.h switch.h \
|
||||
qfcc.h type.h
|
||||
|
|
|
@ -40,3 +40,4 @@ bin_PROGRAMS= qfcc
|
|||
qfcc_SOURCES= cmdlib.c debug.c pr_comp.c pr_def.c pr_imm.c pr_lex.c pr_opcode.c qfcc.c qc-parse.y qc-lex.l emit.c expr.c struct.c switch.c getopt.c getopt1.c type.c
|
||||
qfcc_LDADD= $(QFCC_LIBS)
|
||||
qfcc_DEPENDENCIES= $(QFCC_DEPS)
|
||||
EXTRA_DIST= qc-parse.h
|
||||
|
|
Loading…
Reference in a new issue