mirror of
https://github.com/Hizenberg469/C1-Linux_SYS_Prog-AS-.git
synced 2026-04-19 18:32:24 +03:00
machine endianess
This commit is contained in:
14
endianess/Makefile
Normal file
14
endianess/Makefile
Normal file
@@ -0,0 +1,14 @@
|
||||
TARGET: endian_exe
|
||||
|
||||
endian_exe: main.o endian.o
|
||||
gcc main.o endian.o -o endian_exe
|
||||
|
||||
endian.o: endian.c
|
||||
gcc -c endian.c -o endian.o
|
||||
|
||||
main.o: main.c
|
||||
gcc -c main.c -o main.o
|
||||
|
||||
clean:
|
||||
rm main.o
|
||||
rm endian.o
|
||||
Reference in New Issue
Block a user