mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
300 B
17 lines
300 B
4 years ago
|
objects = src/main.o src/system.o src/auth.o
|
||
|
|
||
|
atm : $(objects)
|
||
|
cc -o atm $(objects)
|
||
|
|
||
|
main.o : src/header.h
|
||
|
kbd.o : src/header.h
|
||
|
command.o : src/header.h
|
||
|
display.o : src/header.h
|
||
|
insert.o : src/header.h
|
||
|
search.o : src/header.h
|
||
|
files.o : src/header.h
|
||
|
utils.o : src/header.h
|
||
|
|
||
|
clean :
|
||
|
rm -f $(objects)
|