65 lines
2.2 KiB
Makefile
65 lines
2.2 KiB
Makefile
# The MIT License (MIT)
|
|
#
|
|
# Copyright (C) 2026 Scott Duensing
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to
|
|
# deal in the Software without restriction, including without limitation the
|
|
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
# sell copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in
|
|
# all copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
# IN THE SOFTWARE.
|
|
|
|
# SecLink Terminal Demo Makefile for DJGPP cross-compilation
|
|
|
|
DJGPP_PREFIX = $(HOME)/djgpp/djgpp
|
|
CC = $(DJGPP_PREFIX)/bin/i586-pc-msdosdjgpp-gcc
|
|
CFLAGS = -O2 -Wall -Wextra -march=i486 -mtune=i586 -I../dvx -I../seclink -I../security
|
|
LDFLAGS = -L../lib -ldvx -lseclink -lpacket -lsecurity -lrs232 -lm
|
|
|
|
OBJDIR = ../obj/termdemo
|
|
BINDIR = ../bin
|
|
LIBDIR = ../lib
|
|
|
|
SRCS = termdemo.c
|
|
OBJS = $(patsubst %.c,$(OBJDIR)/%.o,$(SRCS))
|
|
TARGET = $(BINDIR)/termdemo.exe
|
|
|
|
.PHONY: all clean libs
|
|
|
|
all: libs $(TARGET)
|
|
|
|
libs:
|
|
$(MAKE) -C ../dvx
|
|
$(MAKE) -C ../rs232
|
|
$(MAKE) -C ../packet
|
|
$(MAKE) -C ../security
|
|
$(MAKE) -C ../seclink
|
|
|
|
$(TARGET): $(OBJS) $(LIBDIR)/libdvx.a $(LIBDIR)/libseclink.a $(LIBDIR)/libpacket.a $(LIBDIR)/libsecurity.a $(LIBDIR)/librs232.a | $(BINDIR)
|
|
$(CC) $(CFLAGS) -o $@ $(OBJS) $(LDFLAGS)
|
|
|
|
$(OBJDIR)/%.o: %.c | $(OBJDIR)
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
$(OBJDIR):
|
|
mkdir -p $(OBJDIR)
|
|
|
|
$(BINDIR):
|
|
mkdir -p $(BINDIR)
|
|
|
|
# Dependencies
|
|
$(OBJDIR)/termdemo.o: termdemo.c ../dvx/dvxApp.h ../dvx/dvxWgt.h ../seclink/secLink.h ../security/security.h
|
|
|
|
clean:
|
|
rm -rf $(OBJDIR) $(TARGET)
|