Files
school_archives/OSU Coursework/CS 344 - Operating Systems I/Assignment 3 - smallsh/makefile

8 lines
115 B
Makefile

all: build
clean:
rm -f smallsh
build:
dos2unix smallsh.c > /dev/null 2>&1
gcc smallsh.c -o smallsh -std=c99