File: Makefile.in

package info (click to toggle)
wine 0.0.20020411-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 43,012 kB
  • ctags: 104,265
  • sloc: ansic: 550,196; perl: 21,747; yacc: 3,990; sh: 3,904; makefile: 3,297; tcl: 2,616; lex: 2,443
file content (39 lines) | stat: -rw-r--r-- 758 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
TOPSRCDIR = @top_srcdir@
TOPOBJDIR = ../..
SRCDIR    = @srcdir@
VPATH     = @srcdir@
MODULE    = winhelp
PROGRAMS  = hlp2sgml
IMPORTS   = advapi32 comctl32 shlwapi shell32 ole32 rpcrt4 comdlg32 winspool.drv user32 gdi32 kernel32 ntdll

C_SRCS = \
	winhelp.c \
	hlpfile.c \
	macro.c \
	string.c

EXTRA_SRCS = macro.yacc.y macro.lex.l
EXTRA_OBJS = y.tab.o @LEX_OUTPUT_ROOT@.o

RC_SRCS = rsrc.rc

@MAKE_PROG_RULES@

all: $(PROGRAMS)

hlp2sgml: hlp2sgml.o hlpfile.o
	$(CC) -o hlp2sgml hlp2sgml.o hlpfile.o

install::
	$(INSTALL_PROGRAM) hlp2sgml $(bindir)/hlp2sgml

uninstall::
	$(RM) $(bindir)/hlp2sgml

y.tab.c y.tab.h: macro.yacc.y
	$(YACC) -d -t $(SRCDIR)/macro.yacc.y

@LEX_OUTPUT_ROOT@.c: macro.lex.l
	$(LEX) -8 -i $(SRCDIR)/macro.lex.l

### Dependencies: