Skip to content

Commit

Permalink
Merge pull request #38 from Projeto-Pindorama/timeout-impl
Browse files Browse the repository at this point in the history
chore: Forgot to commit the Makefile.
  • Loading branch information
takusuman authored Feb 21, 2024
2 parents 81c81ce + 98a6b5c commit 10a2e5c
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions timeout/Makefile.mk
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
all: timeout

timeout: timeout.o sigtable.o
$(LD) $(LDFLAGS) timeout.o sigtable.o $(LCOMMON) $(LWCHAR) $(LIBS) -o timeout
timeout: timeout.o
$(LD) $(LDFLAGS) timeout.o $(LCOMMON) $(LWCHAR) $(LIBS) -o timeout

timeout.o: timeout.c
$(CC) -std=c99 -Wall $(CFLAGS) $(CPPFLAGS) $(XO5FL) $(IWCHAR) $(ICOMMON) -I. -g -c timeout.c

sigtable.o: sigtable.c
$(CC) $(CPPFLAGS) -c sigtable.c

install: all
$(UCBINST) -c timeout $(ROOT)$(DEFBIN)/timeout
$(STRIP) $(ROOT)$(DEFBIN)/timeout
Expand Down

0 comments on commit 10a2e5c

Please sign in to comment.