| 1234567891011121314151617181920212223 |
- # compiler
- CC = g++
- # compiler flags
- CFLAGS = -Wall -Werror -std=c++11
- # linked libraries
- LL = -lncurses
- # make first entry first
- all: main
- main: horse.o race.o
- $(CC) $(CFLAGS) -o hrtui Main.cpp horse.o race.o $(LL)
- horse.o: Horse.cpp Horse.h
- $(CC) $(CFLAGS) -c Horse.cpp -o horse.o
- race.o: Race.cpp Race.h
- $(CC) $(CFLAGS) -c Race.cpp -o race.o
- clean:
- rm hrtui winners.log *.o
|