11 lines
193 B
Makefile
11 lines
193 B
Makefile
NAME = alutest
|
|
SRCS = build/alu_test.c
|
|
include $(AM_HOME)/Makefile
|
|
|
|
GENERATOR = build/gen_alu_test
|
|
|
|
$(GENERATOR): gen_alu_test.c
|
|
gcc -O2 -Wall -Werror $^ -o $@
|
|
|
|
$(SRCS): $(GENERATOR)
|
|
$^ > $@
|