update
[lttv.git] / markers-userspace / Makefile
CommitLineData
99c5a086 1
2CC=gcc
3
4all: testprog testprog.S
5
6marker-lib.o: marker-lib.c marker.h
7 $(CC) -O2 -DCONFIG_MARKERS -c -o $@ marker-lib.c
8
9testprog: testprog.c marker.h marker-lib.o
52204d63 10 $(CC) -Wl,-Telf_i386.xmark -O2 -DCONFIG_MARKERS -o $@ testprog.c marker-lib.o
99c5a086 11
12testprog.S: testprog.c marker.h
13 $(CC) -O2 -DCONFIG_MARKERS -S -o $@ testprog.c
14
15.PHONY: clean
16
17clean:
c604f8bf 18 rm -f testprog testprog.S marker-lib.o
This page took 0.023772 seconds and 4 git commands to generate.