initial version

This commit is contained in:
gohigh
2024-02-19 01:11:57 -05:00
parent 7c80ef0753
commit 692092f8e0
817 changed files with 430745 additions and 0 deletions

24
homeip/Makefile Executable file
View File

@@ -0,0 +1,24 @@
#
# Home IP detect Makefile
#
CC = gcc
CFLAGS = -g
LFLAGS = -L. -liniparser
AR = ar
ARFLAGS = rcv
RM = rm -f
default: all
all: homeipd2 # homeipc
homeipd2: homeipd2.c
$(CC) $(CFLAGS) -o homeipd2 homeipd2.c -L. -liniparser
#parse: parse.c
# $(CC) $(CFLAGS) -o parse parse.c -L. -liniparser
clean veryclean:
$(RM) homeipd2 homeipc