]> Git Repo - linux.git/blob - tools/vm/Makefile
workqueue: reimplement cancel_delayed_work() using try_to_grab_pending()
[linux.git] / tools / vm / Makefile
1 # Makefile for vm tools
2
3 CC = $(CROSS_COMPILE)gcc
4 CFLAGS = -Wall -Wextra
5
6 all: page-types slabinfo
7 %: %.c
8         $(CC) $(CFLAGS) -o $@ $^
9
10 clean:
11         $(RM) page-types slabinfo
This page took 0.028324 seconds and 4 git commands to generate.