2020-10-01 12:25:34 -04:00

11 lines
249 B
Makefile

.RECIPEPREFIX = !
CC = gcc
CFLAGS = -std=gnu99 -mno-vsx -nostdlib
DEPS = ops.h ./a2lib/a2lib.h ./printf/printf.h
SRC = ops.c ./a2lib/a2lib.c ./printf/printf.c
ops: $(SRC) $(DEPS)
! $(CC) $(CFLAGS) -I./a2lib -I./printf -o ops $(SRC) --entry main