]> Git Repo - linux.git/blob - tools/vm/Makefile
Revert "net: maintain namespace isolation between vlan and real device"
[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.036792 seconds and 4 git commands to generate.