Added variables
This commit is contained in:
parent
f08d6c488f
commit
d2f81d63ca
9
Makefile
9
Makefile
|
@ -1,3 +1,4 @@
|
|||
#
|
||||
# limpador do luca0N! 3
|
||||
# Copyright (C) 2020 luca0N!
|
||||
#
|
||||
|
@ -15,12 +16,16 @@
|
|||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
# Contact me by e-mail via <mailto:luca0n@protonmail.com>
|
||||
#
|
||||
|
||||
C=gcc
|
||||
CFLAG=-s -Os
|
||||
|
||||
ldl3: main.o about.h str.h colors.h
|
||||
gcc main.o about.h str.h colors.h -s -Os -o ldl3
|
||||
$(C) main.o about.h str.h colors.h -o ldl3 $(CFLAG)
|
||||
|
||||
main.o: main.c
|
||||
gcc -c -s -Os main.c
|
||||
$(C) -c main.c $(CFLAG)
|
||||
|
||||
clean:
|
||||
rm *.o *.exe
|
||||
|
|
Reference in New Issue