Makefile 97 字节
Newer Older
1 2 3 4 5 6 7 8
C_FLAGS = -mcmodel=large -fno-builtin -m64 

all: terminal.c

%.o: %.c
	gcc -c $*.c $(C_FLAGS)