Calculate how many hours you're working. A project in multiple languages.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
189 B

4 years ago
DEPS = hours.o period.o
4 years ago
4 years ago
wh: main.o $(DEPS)
4 years ago
gcc $^ -o $@
%.o: %.c %.h
gcc -c $< -Wall
4 years ago
.PHONY: test
test: wh_tests
./wh_tests
rm ./wh_tests
wh_tests: wh_tests.o $(DEPS)
gcc $^ -o $@