enowars5-service-stldoctor

STL-Analyzing A/D Service for ENOWARS5 in 2021
git clone https://git.sinitax.com/sinitax/enowars5-service-stldoctor
Log | Files | Refs | README | LICENSE | sfeed.txt

Makefile (108B)


      1CFLAGS = -g
      2
      3.PHONY: all clean
      4
      5all: revhash
      6
      7clean:
      8	rm revhash
      9
     10revhash: main.c
     11	$(CC) -o $@ $< $(CFLAGS)