mirror of
https://github.com/ioacademy-jikim/debugging
synced 2025-06-08 16:36:21 +00:00
14 lines
196 B
Plaintext
14 lines
196 B
Plaintext
# makefile4
|
|
|
|
.c.o:
|
|
@echo "Compiling" $< "..."
|
|
cc -c $< -I.
|
|
|
|
app: main.o foo.o goo.o
|
|
@echo "Building target" $@ "..."
|
|
cc -o app main.o foo.o goo.o
|
|
|
|
main.o:foo.h goo.h
|
|
foo.o:foo.h
|
|
foo.o:goo.h
|