Codebase list os-prober / a84b2971-f4cf-43d6-92eb-d4112a034e9f/main Makefile
a84b2971-f4cf-43d6-92eb-d4112a034e9f/main

Tree @a84b2971-f4cf-43d6-92eb-d4112a034e9f/main (Download .tar.gz)

Makefile @a84b2971-f4cf-43d6-92eb-d4112a034e9f/mainraw · history · blame

1
2
3
4
5
6
7
8
9
CFLAGS := -Os -g -Wall

all: newns

newns: newns.c
	$(CC) $(CFLAGS) $(LDFLAGS) $^ -o $@

clean:
	rm -f newns