12 lines
109 B
Makefile
12 lines
109 B
Makefile
all: hwsim_test
|
|
|
|
ifndef CC
|
|
CC=gcc
|
|
endif
|
|
|
|
ifndef CFLAGS
|
|
CFLAGS = -O2 -Wall -g
|
|
endif
|
|
|
|
hwsim_test: hwsim_test.o
|