Makefile.in 730 Bytes
Newer Older
1
MODULE    = regedit.exe
2
APPMODE   = -mwindows -mno-cygwin
3
IMPORTS   = advapi32
Zimler Attila's avatar
Zimler Attila committed
4
DELAYIMPORTS = shlwapi shell32 comdlg32 comctl32 user32 gdi32
5
EXTRAINCL = -I$(top_srcdir)/include/msvcrt
6
EXTRADEFS = -DNO_LIBWINE_PORT -DWINE_NO_UNICODE_MACROS
7
MODCFLAGS = @BUILTINFLAG@
8 9

C_SRCS = \
10 11
	about.c \
	childwnd.c \
12
	edit.c \
13
	framewnd.c \
14
	hexedit.c \
15 16
	listview.c \
	main.c \
17
	regedit.c \
18 19 20
	regproc.c \
	treeview.c

21 22 23 24 25 26 27 28
RC_SRCS = \
	Bg.rc \
	Cs.rc \
	Da.rc \
	De.rc \
	En.rc \
	Es.rc \
	Fr.rc \
29
	He.rc \
30 31 32 33 34 35 36 37 38
	Hu.rc \
	It.rc \
	Ja.rc \
	Ko.rc \
	Lt.rc \
	Nl.rc \
	No.rc \
	Pl.rc \
	Pt.rc \
39
	Ro.rc \
40 41 42 43
	Ru.rc \
	Si.rc \
	Sv.rc \
	Tr.rc \
44
	Uk.rc \
45
	Zh.rc \
46 47 48
	regedit.rc

PO_SRCS = regedit.rc
49

50
MANPAGE = regedit.man
Austin English's avatar
Austin English committed
51

Herve Chanal's avatar
Herve Chanal committed
52 53
SVG_SRCS = regedit.svg

54
@MAKE_PROG_RULES@