12 lines
124 B
Makefile
12 lines
124 B
Makefile
|
|
OUTPUTS := \
|
|
allocator.o
|
|
|
|
TOPLEVEL := ../
|
|
|
|
include ../common.mk
|
|
|
|
all: allocator.o
|
|
|
|
hush: hush.c
|
|
$(CC) $(CFLAGS) -o $@ $<
|