CS469/569
Home
Course Info
Contact
Course materials
Lessons
Syllabus
In Class Code
Course Policy
Assignments
Homework
Quizzes and Tests
Resources
Links
CS469/569 - Linux and Unix Administration and Networking
Spring 2022
Displaying ./code/02-24/Makefile~
CFLAGS = -Wall -g SRCS=$(wildcard *.c) all: $(SRCS) gcc -o $@ $^ $(CFLAGS)