first commit
This commit is contained in:
commit
51c233c7f5
10 changed files with 260 additions and 0 deletions
11
Makefile
Normal file
11
Makefile
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
CC=gcc
|
||||
CFLAGS=-Wall -Wextra -std=c99
|
||||
OBJ=main.o horno.o empanada.o utils.o
|
||||
|
||||
all: horno_simulator
|
||||
|
||||
horno_simulator: $(OBJ)
|
||||
$(CC) $(CFLAGS) -o horno_simulator $(OBJ)
|
||||
|
||||
clean:
|
||||
rm -f *.o horno_simulator
|
||||
Loading…
Add table
Add a link
Reference in a new issue