Changeset e28175d in mainline for uspace/srv/net/udp/meson.build
- Timestamp:
- 2020-03-15T10:44:02Z (6 years ago)
- Parents:
- b401b33 (diff), 44dde42 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - git-author:
- heiducteam <tristanided@…> (2020-03-15 10:44:02)
- git-committer:
- GitHub <noreply@…> (2020-03-15 10:44:02)
- File:
-
- 1 moved
-
uspace/srv/net/udp/meson.build (moved) (moved from uspace/srv/net/udp/Makefile ) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/udp/meson.build
rb401b33 re28175d 27 27 # 28 28 29 USPACE_PREFIX = ../../.. 29 deps = [ 'nettl' ] 30 30 31 LIBS = nettl 31 _common_src = files( 32 'assoc.c', 33 'cassoc.c', 34 'msg.c', 35 'pdu.c', 36 ) 32 37 33 BINARY = udp 38 src = files( 39 'service.c', 40 'udp.c', 41 'udp_inet.c', 42 ) 34 43 35 SOURCES = \ 36 assoc.c \ 37 msg.c \ 38 pdu.c \ 39 service.c \ 40 udp.c \ 41 udp_inet.c 44 test_src = files( 45 'test/assoc.c', 46 'test/msg.c', 47 'test/main.c', 48 'test/pdu.c', 49 ) 42 50 43 include $(USPACE_PREFIX)/Makefile.common 51 src = [ _common_src, src ] 52 test_src = [ _common_src, test_src ]
Note:
See TracChangeset
for help on using the changeset viewer.
