Release 951105
[wine.git] / toolkit / Makefile.in
blob55745dd939ab88d57c3e5aab2548250d3cf7e727
1 TOPSRC = @top_srcdir@
2 X_LIBS = @X_LIBS@
3 XLIB = @X_PRE_LIBS@ -lXext -lX11 @X_EXTRA_LIBS@
4 MODULE = toolkit
6 C_SRCS = \
7 atom.c \
8 arch.c \
9 heap.c \
10 miscstubs.c \
11 sup.c \
12 winmain.c
14 all: $(MODULE).o
16 hello: hello.o ../winelib.a
17 gcc -g -o hello hello.o ../winelib.a -lm $(X_LIBS) -lXpm $(XLIB)
19 hello2: hello2.o ../winelib.a
20 gcc -g -o hello2 hello2.o ../winelib.a -lm $(X_LIBS) -lXpm $(XLIB)
22 hello3: hello3res.o hello3.o
23 gcc -g -o hello3 hello3.o hello3res.o ../winelib.a -lm $(X_LIBS) -lXpm $(XLIB)
25 hello3.o: hello3res.o
27 hello3res.o: hello3res.rc
28 echo "#include \"windows.h\"" >hello3res.rct
29 echo WINDOWS_H_ENDS_HERE >>hello3res.rct
30 cat hello3res.rc >>hello3res.rct
31 $(CC) $(ALLCFLAGS) -E -x c -P hello3res.rct | sed -e '1,/^WINDOWS_H_ENDS_HERE/d' | ../rc/winerc -o hello3res -v -p hello3
32 gcc -c hello3res.c
34 @MAKE_RULES@
36 clean::
37 $(RM) hello hello2 hello3
39 ### Dependencies: