Guest User

Untitled

a guest
Apr 23rd, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. # -- Makefile für den 7. Beleg im Fach Betriebssysteme
  2. CC = gcc
  3. CCOPT = -Wall
  4.  
  5. ueb7: parent child1 child2
  6.  
  7. # -- Kompilierungs-Teil ---------------------------------------------------
  8. parent: parent.c
  9. @echo "Erstelle Modul prim..."
  10. $(CC) $(CCOPT) -o ueb7 parent.c
  11. child1: child1.c
  12. @echo "Erstelle Modul child..."
  13. $(CC) $(CCOPT) -o child1 child1.c
  14. child2: child2.c
  15. @echo "Erstelle Modul child..."
  16. $(CC) $(CCOPT) -o child2 child2.c
Add Comment
Please, Sign In to add comment