Changes in uspace/srv/net/tcp/Makefile [2989c7e:3e2291a9] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tcp/Makefile
r2989c7e r3e2291a9 37 37 BINARY = tcp 38 38 39 SOURCES = \39 SOURCES_COMMON = \ 40 40 conn.c \ 41 inet.c \ 41 42 iqueue.c \ 42 43 ncsim.c \ … … 44 45 rqueue.c \ 45 46 segment.c \ 46 service.c \47 47 seq_no.c \ 48 tcp.c \49 48 test.c \ 50 49 tqueue.c \ 51 50 ucall.c 52 51 52 SOURCES = \ 53 $(SOURCES_COMMON) \ 54 service.c \ 55 tcp.c 56 57 TEST_SOURCES = \ 58 $(SOURCES_COMMON) \ 59 test/conn.c \ 60 test/iqueue.c \ 61 test/main.c \ 62 test/pdu.c \ 63 test/rqueue.c \ 64 test/segment.c \ 65 test/seq_no.c \ 66 test/tqueue.c \ 67 test/ucall.c 68 53 69 include $(USPACE_PREFIX)/Makefile.common
Note:
See TracChangeset
for help on using the changeset viewer.