Skip to content
Snippets Groups Projects
Commit 8336cc9e authored by Ulrich Weigand's avatar Ulrich Weigand Committed by Alexandre Julliard
Browse files

Adapted to glue code generation changes.

parent c50a1d05
No related branches found
No related tags found
No related merge requests found
Showing
with 4 additions and 23 deletions
......@@ -82,7 +82,7 @@ LINTS = $(C_SRCS:.c=.ln)
# Implicit rules
.SUFFIXES:
.SUFFIXES: .rc .res .spec .spec.c .spec.o .glue.s $(SUFFIXES)
.SUFFIXES: .rc .res .spec .spec.c .spec.o .glue.c $(SUFFIXES)
.c.o:
$(CC) -c $(ALLCFLAGS) -o $*.o $<
......@@ -114,7 +114,7 @@ LINTS = $(C_SRCS:.c=.ln)
.spec.spec.c:
$(BUILD) @BUILDFLAGS@ -o $@ -spec $<
.c.glue.s:
.c.glue.c:
$(BUILD) @BUILDFLAGS@ -o $@ -glue $<
.c.ln:
......@@ -176,13 +176,13 @@ lint:: $(MODULE).ln
$(SPEC_SRCS:.spec=.spec.c): $(BUILD) $(TOPSRCDIR)/include/builtin16.h $(TOPSRCDIR)/include/builtin32.h
$(GLUE:.c=.glue.s): $(BUILD)
$(GLUE:.c=.glue.c): $(BUILD) $(TOPSRCDIR)/include/builtin16.h $(TOPSRCDIR)/include/builtin32.h
depend:: $(MAKEDEP) $(C_SRCS) $(RC_SRCS) $(EXTRA_SRCS)
$(MAKEDEP) $(DIVINCL) -C$(SRCDIR) $(C_SRCS) $(RC_SRCS) $(EXTRA_SRCS)
clean::
$(RM) *.o *.ln \#*\# *~ *% .#* *.bak *.orig *.rej *.flc y.tab.c y.tab.h lex.yy.c core $(GEN_ASM_SRCS) $(RC_SRCS:.rc=.s) $(RC_SRCS:.rc=.h) $(SPEC_SRCS:.spec=.spec.c) $(GLUE:.c=.glue.s) $(PROGRAMS)
$(RM) *.o *.ln \#*\# *~ *% .#* *.bak *.orig *.rej *.flc y.tab.c y.tab.h lex.yy.c core $(GEN_ASM_SRCS) $(RC_SRCS:.rc=.s) $(RC_SRCS:.rc=.h) $(SPEC_SRCS:.spec=.spec.c) $(GLUE:.c=.glue.c) $(PROGRAMS)
dummy:
......
Makefile
avifil32.spec.c
avifile.spec.c
avifile.spec.glue.s
......@@ -6,7 +6,6 @@ VPATH = @srcdir@
MODULE = avifil32
SPEC_SRCS = avifil32.spec avifile.spec
GLUE = avifile.spec.c
C_SRCS = \
avifile.c
......
Makefile
comdlg32.spec.c
commdlg.spec.c
commdlg.spec.glue.s
rsrc.s
......@@ -7,7 +7,6 @@ MODULE = commdlg
WRCEXTRA = -s -pcomdlg32
SPEC_SRCS = commdlg.spec comdlg32.spec
GLUE = commdlg.spec.c
C_SRCS = \
cdlg32.c \
......
Makefile
lz32.spec.c
lzexpand.spec.c
lzexpand.spec.glue.s
......@@ -6,7 +6,6 @@ VPATH = @srcdir@
MODULE = lzexpand
SPEC_SRCS = lz32.spec lzexpand.spec
GLUE = lzexpand.spec.c
C_SRCS = \
lzexpand_main.c
......
Makefile
msacm.spec.c
msacm.spec.glue.s
......@@ -6,7 +6,6 @@ VPATH = @srcdir@
MODULE = msacm
SPEC_SRCS = msacm.spec
GLUE = msacm.spec.c
C_SRCS = \
msacm_main.c
......
Makefile
msvfw32.spec.c
msvideo.spec.c
msvideo.spec.glue.s
......@@ -6,7 +6,6 @@ VPATH = @srcdir@
MODULE = msvideo
SPEC_SRCS = msvfw32.spec msvideo.spec
GLUE = msvideo.spec.c
C_SRCS = \
msvideo_main.c
......
Makefile
rasapi32.spec.c
rasapi16.spec.c
rasapi16.spec.glue.s
......@@ -6,7 +6,6 @@ VPATH = @srcdir@
MODULE = rasapi32
SPEC_SRCS = rasapi32.spec rasapi16.spec
GLUE = rasapi16.spec.c
C_SRCS = rasapi.c
......
Makefile
shell32.spec.c
shell.spec.c
shell.spec.glue.s
shres.s
......@@ -7,7 +7,6 @@ MODULE = shell32
WRCEXTRA = -s -p$(MODULE)
SPEC_SRCS = shell32.spec shell.spec
GLUE = shell.spec.c
C_SRCS = \
brsfolder.c \
......
Makefile
sound.spec.c
sound.spec.glue.s
......@@ -6,7 +6,6 @@ VPATH = @srcdir@
MODULE = sound
SPEC_SRCS = sound.spec
GLUE = sound.spec.c
C_SRCS = \
sound_main.c
......
Makefile
stress.spec.c
stress.spec.glue.s
......@@ -6,7 +6,6 @@ VPATH = @srcdir@
MODULE = stress
SPEC_SRCS = stress.spec
GLUE = stress.spec.c
C_SRCS = \
stress_main.c
......
Makefile
ver.spec.c
ver.spec.glue.s
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment