all:ttsc1
clean:ttsc1.clean
CC=gcc
CPPFLAGS:=$(CPPFLAGS) -I.
CFLAGS:=$(CFLAGS) -std=gnu11 -O3 -mtune=native -g -fPIC -pthread
LDFLAGS=$(CFLAGS) -lpthread -lm
ttsc1.o:ttsc1.c IA64_tsc_info.h IA64_rdtsc.h
ttsc1: ttsc1.o
ttsc1.clean:
	@rm -vf ttsc1 ttsc1.o

