Francois Gouget | 49d251f | 2000-07-23 19:30:48 +0000 | [diff] [blame] | 1 | DEFS = -DWINELIB -DSTRICT |
Alexandre Julliard | bf9130a | 1996-10-13 17:45:47 +0000 | [diff] [blame] | 2 | TOPSRCDIR = @top_srcdir@ |
| 3 | TOPOBJDIR = .. |
| 4 | SRCDIR = @srcdir@ |
| 5 | VPATH = @srcdir@ |
| 6 | MODULE = none |
Alexandre Julliard | 638f169 | 1999-01-17 16:32:32 +0000 | [diff] [blame] | 7 | PROGRAMS = expand hello hello2 hello3 hello4 hello5 new rolex vartest volinfo |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 8 | |
Ulrich Weigand | 3dc5d94 | 2000-02-03 01:37:23 +0000 | [diff] [blame] | 9 | SPEC_SRCS = \ |
| 10 | expand.spec \ |
| 11 | hello.spec \ |
| 12 | hello2.spec \ |
| 13 | hello3.spec \ |
| 14 | hello4.spec \ |
| 15 | hello5.spec \ |
| 16 | new.spec \ |
| 17 | rolex.spec \ |
| 18 | vartest.spec \ |
| 19 | volinfo.spec |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 20 | |
Alexandre Julliard | 3db94ef | 1997-09-28 17:43:24 +0000 | [diff] [blame] | 21 | RC_SRCS = \ |
| 22 | hello3res.rc |
Alexandre Julliard | 530ee84 | 1996-10-23 16:59:13 +0000 | [diff] [blame] | 23 | |
Alexandre Julliard | 21ec006 | 2000-10-23 21:39:39 +0000 | [diff] [blame^] | 24 | all: $(PROGRAMS) |
Alexandre Julliard | 3db94ef | 1997-09-28 17:43:24 +0000 | [diff] [blame] | 25 | |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 26 | @MAKE_RULES@ |
| 27 | |
Ulrich Weigand | 3dc5d94 | 2000-02-03 01:37:23 +0000 | [diff] [blame] | 28 | expand: expand.o expand.spec.o |
Alexandre Julliard | e1e7537 | 2000-04-24 17:17:49 +0000 | [diff] [blame] | 29 | $(CC) -o expand $+ -L$(DLLDIR) -llz32 $(DLL_LINK) $(LIBS) |
Alexandre Julliard | 3db94ef | 1997-09-28 17:43:24 +0000 | [diff] [blame] | 30 | |
Ulrich Weigand | 3dc5d94 | 2000-02-03 01:37:23 +0000 | [diff] [blame] | 31 | hello: hello.o hello.spec.o |
Francois Gouget | 73925ab | 2000-09-09 19:41:58 +0000 | [diff] [blame] | 32 | $(CC) -o hello $+ -L$(DLLDIR) -lgdi32 -lkernel32 -luser32 $(DLL_LINK) $(LIBS) |
James Juran | acc19d3 | 1999-08-07 14:07:53 +0000 | [diff] [blame] | 33 | |
Ulrich Weigand | 3dc5d94 | 2000-02-03 01:37:23 +0000 | [diff] [blame] | 34 | hello2: hello2.o hello2.spec.o |
Francois Gouget | 73925ab | 2000-09-09 19:41:58 +0000 | [diff] [blame] | 35 | $(CC) -o hello2 $+ -L$(DLLDIR) -lgdi32 -lkernel32 -luser32 $(DLL_LINK) $(LIBS) |
Alexandre Julliard | 641ee76 | 1997-08-04 16:34:36 +0000 | [diff] [blame] | 36 | |
Alexandre Julliard | 21ec006 | 2000-10-23 21:39:39 +0000 | [diff] [blame^] | 37 | hello3: hello3.o hello3.spec.o |
Francois Gouget | 73925ab | 2000-09-09 19:41:58 +0000 | [diff] [blame] | 38 | $(CC) -o hello3 $+ -L$(DLLDIR) -ladvapi32 -lcomctl32 -lcomdlg32 -lgdi32 -lkernel32 -lole32 -lrpcrt4 -lshell32 -lshlwapi -luser32 -lwinspool.drv $(DLL_LINK) $(LIBS) |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 39 | |
Alexandre Julliard | 21ec006 | 2000-10-23 21:39:39 +0000 | [diff] [blame^] | 40 | hello3.spec.c: hello3res.res |
| 41 | |
Ulrich Weigand | 3dc5d94 | 2000-02-03 01:37:23 +0000 | [diff] [blame] | 42 | hello4: hello4.o hello4.spec.o |
Francois Gouget | 73925ab | 2000-09-09 19:41:58 +0000 | [diff] [blame] | 43 | $(CC) -o hello4 $+ -L$(DLLDIR) -lgdi32 -lkernel32 -luser32 $(DLL_LINK) $(LIBS) |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 44 | |
Ulrich Weigand | 3dc5d94 | 2000-02-03 01:37:23 +0000 | [diff] [blame] | 45 | hello5: hello5.o hello5.spec.o |
Alexandre Julliard | e1e7537 | 2000-04-24 17:17:49 +0000 | [diff] [blame] | 46 | $(CC) -o hello5 $+ $(DLL_LINK) $(LIBS) |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 47 | |
Ulrich Weigand | 3dc5d94 | 2000-02-03 01:37:23 +0000 | [diff] [blame] | 48 | new: new.o new.spec.o |
Francois Gouget | 73925ab | 2000-09-09 19:41:58 +0000 | [diff] [blame] | 49 | $(CC) -o new $+ -L$(DLLDIR) -lgdi32 -lkernel32 -luser32 $(DLL_LINK) $(LIBS) |
Alexandre Julliard | 0c126c7 | 1996-02-18 18:44:41 +0000 | [diff] [blame] | 50 | |
Ulrich Weigand | 3dc5d94 | 2000-02-03 01:37:23 +0000 | [diff] [blame] | 51 | rolex: rolex.o rolex.spec.o |
Francois Gouget | 73925ab | 2000-09-09 19:41:58 +0000 | [diff] [blame] | 52 | $(CC) -o rolex $+ -L$(DLLDIR) -lgdi32 -lkernel32 -luser32 $(DLL_LINK) $(LIBS) |
Alexandre Julliard | 60ce85c | 1998-02-01 18:33:27 +0000 | [diff] [blame] | 53 | |
Ulrich Weigand | 3dc5d94 | 2000-02-03 01:37:23 +0000 | [diff] [blame] | 54 | vartest: vartest.o vartest.spec.o |
Francois Gouget | 73925ab | 2000-09-09 19:41:58 +0000 | [diff] [blame] | 55 | $(CC) -o vartest $+ -L$(DLLDIR) -ladvapi32 -lcomctl32 -lgdi32 -lkernel32 -lole32 -loleaut32 -lrpcrt4 -luser32 $(DLL_LINK) $(LIBS) |
Alexandre Julliard | 0c126c7 | 1996-02-18 18:44:41 +0000 | [diff] [blame] | 56 | |
Ulrich Weigand | 3dc5d94 | 2000-02-03 01:37:23 +0000 | [diff] [blame] | 57 | volinfo: volinfo.o volinfo.spec.o |
Alexandre Julliard | e1e7537 | 2000-04-24 17:17:49 +0000 | [diff] [blame] | 58 | $(CC) -o volinfo $+ $(DLL_LINK) $(LIBS) |
Petter Reinholdtsen | f1f830c | 1998-10-17 12:27:41 +0000 | [diff] [blame] | 59 | |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 60 | ### Dependencies: |