A5
This commit is contained in:
14
A5/Makefile
Normal file
14
A5/Makefile
Normal file
@ -0,0 +1,14 @@
|
||||
CC = gcc
|
||||
CFLAGS = -Wall -std=c11 -g -ggdb
|
||||
|
||||
all: sim
|
||||
|
||||
../src.zip: *.c *.h
|
||||
cd .. && zip src.zip src/*
|
||||
|
||||
|
||||
sim: *.c *.h
|
||||
$(CC) $(CFLAGS) *.c -o sim
|
||||
|
||||
clean:
|
||||
rm -rf *.o sim test_runs
|
Reference in New Issue
Block a user