This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhuzhenjun-libosfp/example/Makefile.am

15 lines
217 B
Makefile
Raw Normal View History

2023-10-09 15:30:06 +08:00
bin_PROGRAMS = osfp_example
2023-09-15 15:27:22 +08:00
2023-09-16 10:43:06 +08:00
osfp_example_SOURCES = \
osfp_example.c
2023-09-15 15:27:22 +08:00
2023-09-16 10:43:06 +08:00
osfp_example_LDADD = \
2023-09-15 15:27:22 +08:00
../src/.libs/libosfp.la
2023-09-16 10:43:06 +08:00
osfp_example_LDFLAGS = \
2023-09-15 15:27:22 +08:00
-lpcap
2023-09-16 10:43:06 +08:00
osfp_example_CFLAGS = \
-I../src
2023-09-27 15:43:32 +08:00