Makefile 69 B

123456
  1. all:
  2. $(CC) -o adduser adduser.c
  3. clean:
  4. rm -f adduser
  5. rm -f *.exe