mirror of
https://github.com/reactos/wine.git
synced 2025-02-19 04:18:09 +00:00
![Bertho Stultiens](/assets/img/avatar_default.png)
old parser has been stripped from the old preprocessor-code which cleaned up both resource-scanner and -parser. - Standard defines have been introduced (see README.wrc) - Both preprocessor- and resource-scanner have been optimized slightly so that no backing up is required (one char lookahead is enough). - Filename-scanning has been cleaned up, though not perfect yet. - User-type resources are compatible now. - Line-continuation in strings is corrected so that it does not introduce a newline in the output.
35 lines
501 B
Makefile
35 lines
501 B
Makefile
DEFS = -DWINELIB
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = none
|
|
PROGRAMS = winemine
|
|
WRCEXTRA = -s -p winemine
|
|
|
|
LICENSELANG = En
|
|
|
|
C_SRCS = \
|
|
main.c \
|
|
dialog.c
|
|
|
|
|
|
SPEC_SRCS = winemine.spec
|
|
|
|
RC_SRCS = rsrc.rc
|
|
|
|
all: check_wrc $(PROGRAMS)
|
|
|
|
@MAKE_RULES@
|
|
|
|
winemine: $(OBJS)
|
|
$(CC) -o winemine $(OBJS) $(DLL_LINK) $(LIBS)
|
|
|
|
install::
|
|
$(INSTALL_PROGRAM) winemine $(bindir)/winemine
|
|
|
|
uninstall::
|
|
$(RM) $(bindir)/winemine
|
|
|
|
### Dependencies:
|