Logo  

CS471/571 - Operating Systems

Displaying exercises/e6/files/Makefile

CC=gcc

all: df tree fcat fcp

df: df.c
	$(CC) -o df df.c

tree: tree.c
	$(CC) -o tree tree.c

fcat: fcat.c
	$(CC) -o fcat fcat.c

fcp: fcp.c
	$(CC) -o fcp fcp.c