mirror of
https://github.com/Hizenberg469/C1-Linux_SYS_Prog-AS-.git
synced 2026-04-20 02:42:23 +03:00
Make a habit to use Iterative Macro for iterating Data Structure
This commit is contained in:
13
Iterative_macros/Makefile
Normal file
13
Iterative_macros/Makefile
Normal file
@@ -0,0 +1,13 @@
|
||||
TARGET: exe
|
||||
libdll.a: dll.o
|
||||
ar rs libdll.a dll.o
|
||||
dll.o: dll.c
|
||||
gcc -g -c -I . dll.c -o dll.o
|
||||
exe: application.o libdll.a
|
||||
gcc -g application.o -o exe -L . -ldll
|
||||
application.o: application.c
|
||||
gcc -g -c -I . application.c -o application.o
|
||||
clean:
|
||||
rm *.o
|
||||
rm libdll.a
|
||||
rm exe
|
||||
Reference in New Issue
Block a user