mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-24 11:29:10 +00: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
|
||
|
|