Rev 8195 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 8195 | Rev 8219 | ||
---|---|---|---|
Line 7... | Line 7... | ||
7 | CPPFLAGS=@CPPFLAGS@ |
7 | CPPFLAGS=@CPPFLAGS@ |
8 | defines=@DEFINES@ |
8 | defines=@DEFINES@ |
9 | STRIP=@STRIP@ |
9 | STRIP=@STRIP@ |
10 | lopt=-L$(wims_home)/lib -lwims -lm $(rpath) |
10 | lopt=-L$(wims_home)/lib -lwims -lm $(rpath) |
11 | O=tables.o basic.o extract.o type.o not.o mathexp.o |
11 | O=tables.o basic.o extract.o type.o not.o mathexp.o |
- | 12 | H=../../Lib/libwims.h ../../config.h ../../includes.h ../../wimsdef.h |
|
12 | all:: mathexp |
13 | all:: mathexp |
13 | 14 | ||
14 | %.o: %.c |
15 | %.o: %.c $(H) |
15 | $(cc) -o $@ $(cflags) $(defines) -c $< |
16 | $(cc) -o $@ $(cflags) $(defines) -c $< |
16 | 17 | ||
17 | clean:: |
18 | clean:: |
18 | rm -f *.o mathexp |
19 | rm -f *.o mathexp |
19 | 20 |