mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
27337af65c
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.
39 lines
719 B
Makefile
39 lines
719 B
Makefile
DEFS = -D__WINE__
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
PROGRAMS = build@PROGEXT@ makedep@PROGEXT@ fnt2bdf@PROGEXT@ bin2res@PROGEXT@
|
|
MODULE = none
|
|
|
|
C_SRCS = build.c makedep.c fnt2bdf.c bin2res.c
|
|
|
|
SUBDIRS = \
|
|
cvdump \
|
|
wrc
|
|
|
|
EXTRASUBDIRS = \
|
|
winapi_check \
|
|
winapi_check/win16 \
|
|
winapi_check/win32 \
|
|
wineconf.libs
|
|
|
|
all: $(PROGRAMS) wrc
|
|
|
|
@MAKE_RULES@
|
|
|
|
build@PROGEXT@: build.o
|
|
$(CC) $(CFLAGS) -o build@PROGEXT@ build.o
|
|
|
|
makedep@PROGEXT@: makedep.o
|
|
$(CC) $(CFLAGS) -o makedep@PROGEXT@ makedep.o
|
|
|
|
fnt2bdf@PROGEXT@: fnt2bdf.o
|
|
$(CC) $(CFLAGS) -o fnt2bdf@PROGEXT@ fnt2bdf.o
|
|
|
|
bin2res@PROGEXT@: bin2res.o
|
|
$(CC) $(CFLAGS) -o bin2res@PROGEXT@ bin2res.o
|
|
|
|
### Dependencies:
|