diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2009-11-25 05:35:51 -0500 |
---|---|---|
committer | Johannes Berg <johannes@sipsolutions.net> | 2009-11-25 05:42:02 -0500 |
commit | cb9b8c18bd3ee78de93c0e472515d0ad106f860c (patch) | |
tree | e48fc3588b08d57db589dbe52bc83f1fb0569fc3 /Makefile | |
parent | 8bb6c06444d5f78833b9cab2e288385f34d5fe24 (diff) |
rename test_plugin to plugin_hrtimer.so
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -9,7 +9,7 @@ LIBS = -L. -lparsevent -ldl | |||
9 | %.o: %.c | 9 | %.o: %.c |
10 | $(CC) -c $(CFLAGS) $(EXT) $(INCLUDES) $< -o $@ | 10 | $(CC) -c $(CFLAGS) $(EXT) $(INCLUDES) $< -o $@ |
11 | 11 | ||
12 | TARGETS = libparsevent.a trace-cmd test_plugin | 12 | TARGETS = libparsevent.a trace-cmd plugin_hrtimer.so |
13 | 13 | ||
14 | all: $(TARGETS) | 14 | all: $(TARGETS) |
15 | 15 | ||
@@ -35,10 +35,10 @@ libparsevent.so: $(LIB_OBJS) | |||
35 | libparsevent.a: $(LIB_OBJS) | 35 | libparsevent.a: $(LIB_OBJS) |
36 | $(RM) $@; $(AR) rcs $@ $^ | 36 | $(RM) $@; $(AR) rcs $@ $^ |
37 | 37 | ||
38 | test_plugin.o: test_plugin.c parse-events.h | 38 | plugin_hrtimer.o: plugin_hrtimer.c parse-events.h |
39 | $(CC) -c $(CFLAGS) -fPIC -o $@ $< | 39 | $(CC) -c $(CFLAGS) -fPIC -o $@ $< |
40 | 40 | ||
41 | test_plugin: test_plugin.o | 41 | plugin_hrtimer.so: plugin_hrtimer.o |
42 | $(CC) -shared -nostartfiles -o $@ $< | 42 | $(CC) -shared -nostartfiles -o $@ $< |
43 | 43 | ||
44 | .PHONY: force | 44 | .PHONY: force |