mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 16:58:41 -05:00
0f3d4b504d
This makes sure that the build.sh script ends up rebuilding hwsim_test. Signed-off-by: Amit Khatri <amit.khatri@samsung.com>
16 lines
148 B
Makefile
16 lines
148 B
Makefile
all: hwsim_test
|
|
|
|
ifndef CC
|
|
CC=gcc
|
|
endif
|
|
|
|
ifndef CFLAGS
|
|
CFLAGS = -O2 -Wall -g
|
|
endif
|
|
|
|
hwsim_test: hwsim_test.o
|
|
|
|
clean:
|
|
rm -rf *.o
|
|
rm -rf hwsim_test
|