mirror of
https://github.com/opnsense/src.git
synced 2026-02-24 10:20:24 -05:00
7 lines
142 B
Makefile
7 lines
142 B
Makefile
# $FreeBSD$
|
|
|
|
all: vm86_test
|
|
|
|
vm86_test: vm86_test_asm.s vm86_test.c
|
|
$(CC) -Wall -Wextra -g -m32 -O -o vm86_test vm86_test_asm.s vm86_test.c
|
|
|