mirror of
https://github.com/opnsense/src.git
synced 2026-03-10 10:13:20 -04:00
8 lines
142 B
Makefile
8 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
|
||
|
|
|