This repository has been archived on 2024-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
clock/Makefile

19 lines
296 B
Makefile
Raw Normal View History

2023-09-24 00:39:25 -04:00
#!/bin/make -f
CFLAGS := -std=c99 -Os -s -Wall -Wextra -Wpedantic
CPPFLAGS :=
INSTALL := /usr/local
PROGN := clock
$(PROGN): clock.c
$(CC) $(CFLAGS) -pipe -o $@ $<
gzexe $@
clean:
-rm $(PROGN) $(PROGN)~
install: $(PROGN)
install -m 755 $< $(INSTALL)/bin/
.PHONY: clean install all