1
0
mirror of https://frontier.innolan.net/rainlance/amiga-ntimed.git synced 2025-11-21 08:10:45 +00:00

Initial commit

This commit is contained in:
llsth
2015-03-07 23:29:12 +01:00
parent db0abbb4c8
commit a56b6e0b0f
20 changed files with 1565 additions and 374 deletions

13
configure vendored
View File

@ -40,6 +40,7 @@ set -e
# NB: These SHALL always be included with #include "..."
HDRS='
atimed.h
ntimed.h
ntimed_endian.h
ntimed_queue.h
@ -49,7 +50,8 @@ HDRS='
param_instance.h
param_tbl.h
udp.h
'
agetaddrinfo.h
apoll.h'
# List of .c files
@ -68,11 +70,14 @@ SRCS='
param.c
pll_std.c
suckaddr.c
time_amiga.c
time_sim.c
time_stuff.c
time_unix.c
todo.c
udp.c
alib.c
agetaddrinfo.c
apoll.c
'
if make -v 2>&1 | grep GNU > /dev/null 2>&1 ; then
@ -108,7 +113,9 @@ else
echo ''
echo 'all: ntimed-client'
echo ''
echo "CFLAGS += -Wall -Werror"
echo 'CC = gcc'
echo "CFLAGS += -DAROS -Wall -Werror"
# echo "CFLAGS += -DAROS"
echo ''
for f in ${HDRS}