Added variables

This commit is contained in:
luca0N! 2020-05-20 14:33:09 -03:00
parent f08d6c488f
commit d2f81d63ca
No known key found for this signature in database
GPG Key ID: 9F1B99B522287CAB
1 changed files with 7 additions and 2 deletions

View File

@ -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