mirror of
https://github.com/86Box/probing-tools.git
synced 2026-02-22 09:35:34 -07:00
23 lines
561 B
Makefile
23 lines
561 B
Makefile
#
|
|
# 86Box A hypervisor and IBM PC system emulator that specializes in
|
|
# running old operating systems and software designed for IBM
|
|
# PC systems and compatibles from 1981 through fairly recent
|
|
# system designs based on the PCI bus.
|
|
#
|
|
# This file is part of the 86Box Probing Tools distribution.
|
|
#
|
|
# Makefile for compiling C-based tools with gcc.
|
|
#
|
|
#
|
|
#
|
|
# Authors: RichardG, <richardg867@gmail.com>
|
|
#
|
|
# Copyright 2023 RichardG.
|
|
#
|
|
|
|
export OBJS = ac97.o clib_pci.o clib_sys.o clib_term.o
|
|
export DEST = ac97
|
|
override LDFLAGS += -lpci
|
|
|
|
include ../clib/gcc.mk
|