Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 1 | TOPSRC = @top_srcdir@ |
| 2 | MODULE = none |
Alexandre Julliard | 0c126c7 | 1996-02-18 18:44:41 +0000 | [diff] [blame^] | 3 | PROGRAMS = hello hello2 hello3 hello4 new rolex |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 4 | ALL_LIBS = $(WINELIB) $(X_LIBS) $(XPM_LIB) $(XLIB) $(LDLIBS) |
| 5 | |
| 6 | C_SRCS = \ |
| 7 | hello.c \ |
| 8 | hello2.c \ |
| 9 | hello3.c \ |
| 10 | hello3res.c \ |
Alexandre Julliard | 0c126c7 | 1996-02-18 18:44:41 +0000 | [diff] [blame^] | 11 | hello4.c \ |
| 12 | new.c \ |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 13 | rolex.c |
| 14 | |
| 15 | all: check_winerc $(PROGRAMS) |
| 16 | |
| 17 | @MAKE_RULES@ |
| 18 | |
| 19 | hello: hello.o $(WINELIB) |
| 20 | $(CC) -o hello hello.o $(LDOPTIONS) $(ALL_LIBS) |
| 21 | |
| 22 | hello2: hello2.o $(WINELIB) |
| 23 | $(CC) -o hello2 hello2.o $(LDOPTIONS) $(ALL_LIBS) |
| 24 | |
| 25 | hello3: hello3res.o hello3.o $(WINELIB) |
| 26 | $(CC) -o hello3 hello3.o hello3res.o $(LDOPTIONS) $(ALL_LIBS) |
| 27 | |
Alexandre Julliard | 0c126c7 | 1996-02-18 18:44:41 +0000 | [diff] [blame^] | 28 | hello4: hello4.o $(WINELIB) |
| 29 | $(CC) -o hello4 hello4.o $(LDOPTIONS) $(ALL_LIBS) |
| 30 | |
| 31 | new: new.o $(WINELIB) |
| 32 | $(CC) -o new new.o $(LDOPTIONS) $(ALL_LIBS) |
| 33 | |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 34 | rolex: rolex.o $(WINELIB) |
| 35 | $(CC) -o rolex rolex.o $(LDOPTIONS) $(ALL_LIBS) |
| 36 | |
| 37 | clean:: |
Alexandre Julliard | 0c126c7 | 1996-02-18 18:44:41 +0000 | [diff] [blame^] | 38 | $(RM) hello hello2 hello3 hello3res.c hello3res.h hello4 new rolex |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 39 | |
| 40 | hello3res.c hello3res.h: $(WINERC) |
| 41 | |
| 42 | ### Dependencies: |